Комбинированный ответ на несколько вещей, которые мне удалось выкопать, чтобы сделать эту работу.
HTML:
<div>
<img src="bleh.jpg">
<ul>
<li>This is a test of something with something to do something</li>
<li>This is a test of something with something to do something</li>
<li>This is a test of something with something to do something</li>
</ul>
</div>
МЕНЬШЕ:
img {
float: left;
}
ul {
list-style-position: inside;
li {
position: relative;
left: 1em;
margin-bottom: 1em; margin-left: -1em;
padding-left: 1em;
text-indent: -1em;
}
}