2020-05-01
Line breaks with display inline block
If you have an inline-block
element, it will try to stay on the same line as other inline elements.
It's possible to get around this.
span {
float: left;
clear: both;
}
If you have an inline-block
element, it will try to stay on the same line as other inline elements.
It's possible to get around this.
span {
float: left;
clear: both;
}
Comments