↧
Answer by prajakta for Text-indent after image
use float:left and margin-bottom to cross div: .cross { padding-right: 5px; float: left; margin-bottom: 60px; }
View ArticleAnswer by Antonio Smoljan for Text-indent after image
You can make the span an inline-block then the margin-left will move all the lines correctly. Example Code: span { margin-left: 10px; display: inline-block; width: calc(100% - 40px); vertical-align:...
View ArticleAnswer by phts for Text-indent after image
If your current markup is not important (image+span) then you can use a <ul> with custom list-style-image. ul { list-style-image: url('https://schwesidesign.com/active.gif'); }...
View ArticleText-indent after image
I am trying to indent text wrapped in a <span> tag. The first line is moved to the right because of an image and I would like the following lines to start with the same indentation as the first...
View Article