Make left-margin: 2em or so will push the whole text including first line to right 2em. Than add text-indent (applicable to first line) as -2em or so.. This brings first line back to start without margin. I tried it for list tags
<style>
ul li{
margin-left: 2em;
text-indent: -2em;
}
</style>