How can I indent all text in a paragraph except the first line?

前端 未结 5 874
终归单人心
终归单人心 2020-12-11 02:53

This is an example fiddle.

What I\'m trying to do is indent everything after the first line.

Right now it looks like:

Categories: Aperiri 
nostr         


        
5条回答
  •  醉梦人生
    2020-12-11 03:58

    How about this:

    .hClass p{
        padding-left: 20px;
    }
    
    
    .iClass{
        font-style: oblinque;
        color: rgb(136, 136, 136);
        font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
        margin-left: -20px;
    }
    

    See: http://jsfiddle.net/gVJK8/5/

提交回复
热议问题