html - Works Cited page on website with everything except first line indented -


i have responsive site has bibliography. want text show works cited page, no matter width of browser is.

so publications on page: http://www.lajsa.org/news-announcements/new-publications/

should have lines under first line indented 30px. image here: http://libguides.mjc.edu/mla/mlaworkscited

i thought this:

p { padding-left:30px;} p::first-line { padding-left: -30px !important;} 

or this:

p:not(::first-line) { padding-left:30px;} 

but didn't work.

here sample html:

<p>aizenberg, edna. <em>on edge of holocaust: shoah in latin american literature , culture</em>. waltham: brandeis up/up of new england, 2016. 200 pp. 19 illustrations. isbn: 978-1-61168-856-6.</p> <p>aizenberg, edna. <em>parricide on pampa? new study , translation of alberto gerchunoff´s </em>los gauchos judíos. 2nd edition. madrid /frankfurt: iberoamericana /vervuert, 2015. 166 pp. isbn: 9788484898849. contains updated introduction , bibliography.</p> <p>balbuena, monique rodrigues. <em>homeless tongues: poetry , languages of sephardic diaspora</em>. stanford: stanford up, 2016.</p> <p>blajberg, israel. <em>star of david in southern cross: memory of jewish presence&nbsp;in armed forces of brazil – cabral haiti</em>. resende, rj: – ahimtb,&nbsp;brazilian military history academy, 2015. 680 pp. 330 illustrations. isbn: 978-85-60811-24-3.</p> 

i can't add span in middle suggested here: indenting 2nd line of paragraph css because line break change depending on screen width.

any suggestions?

p {    padding-left: 30px;    text-indent: -30px;  }
<p>aizenberg, edna. <em>on edge of holocaust: shoah in latin american literature , culture</em>. waltham: brandeis up/up of new england, 2016. 200 pp. 19 illustrations. isbn: 978-1-61168-856-6.</p>  <p>aizenberg, edna. <em>parricide on pampa? new study , translation of alberto gerchunoff´s </em>los gauchos judíos. 2nd edition. madrid /frankfurt: iberoamericana /vervuert, 2015. 166 pp. isbn: 9788484898849. contains updated introduction , bibliography.</p>  <p>balbuena, monique rodrigues. <em>homeless tongues: poetry , languages of sephardic diaspora</em>. stanford: stanford up, 2016.</p>  <p>blajberg, israel. <em>star of david in southern cross: memory of jewish presence&nbsp;in armed forces of brazil – cabral haiti</em>. resende, rj: – ahimtb,&nbsp;brazilian military history academy, 2015. 680 pp. 330 illustrations. isbn: 978-85-60811-24-3.</p>


Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -