Does anyone have an idea how to align the second line?
elements are inline elements, as such layout properties such as Note that making a width
or margin
don't work. You can fix that by either changing the to a block element (such as
span
element a block element by adding display: block;
is redundant, as a span
is by definition a otherwise style-less inline element whereas div
is an otherwise style-less block element. So the correct solution is to use a div
instead of a block-span
.