html - 网站上的作品引用页面,除第一行外的所有内容均缩进

标签 html css

我有一个包含引用书目的响应式网站。无论浏览器的宽度如何,我都希望文本显示为作品引用页面。

因此此页面上的出版物:http://www.lajsa.org/news-announcements/new-publications/

第一行下的所有行都应缩进 30px。喜欢这里的图片:http://libguides.mjc.edu/MLA/mlaworkscited

我以为我可以做到这一点:

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

或者这个:

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

但是没有用。

这是一些示例 HTML:

<p>Aizenberg, Edna. <em>On the Edge of the Holocaust: The Shoah in Latin American Literature and 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 the Pampa? A New Study and Translation of Alberto Gerchunoff´s </em>Los gauchos judíos. 2nd edition. Madrid /Frankfurt: Iberoamericana /Vervuert, 2015. 166 pp. ISBN: 9788484898849. Contains updated introduction and bibliography.</p>
<p>Balbuena, Monique Rodrigues. <em>Homeless Tongues: Poetry and Languages of the Sephardic Diaspora</em>. Stanford: Stanford UP, 2016.</p>
<p>Blajberg, Israel. <em>Star of David in the Southern Cross: Memory of Jewish presence&nbsp;in the armed forces of Brazil – from Cabral to Haiti</em>. Resende, RJ: – AHIMTB,&nbsp;Brazilian Military History Academy, 2015. 680 pp. 330 Illustrations. ISBN: 978-85-60811-24-3.</p>

我不能像这里建议的那样只在中间添加一个跨度:Indenting the 2nd line of a paragraph with CSS因为换行符会根据屏幕宽度而改变。

有什么建议吗?

最佳答案

p {
  padding-left: 30px;
  text-indent: -30px;
}
<p>Aizenberg, Edna. <em>On the Edge of the Holocaust: The Shoah in Latin American Literature and 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 the Pampa? A New Study and Translation of Alberto Gerchunoff´s </em>Los gauchos judíos. 2nd edition. Madrid /Frankfurt: Iberoamericana /Vervuert, 2015. 166 pp. ISBN: 9788484898849. Contains updated introduction and bibliography.</p>
<p>Balbuena, Monique Rodrigues. <em>Homeless Tongues: Poetry and Languages of the Sephardic Diaspora</em>. Stanford: Stanford UP, 2016.</p>
<p>Blajberg, Israel. <em>Star of David in the Southern Cross: Memory of Jewish presence&nbsp;in the armed forces of Brazil – from Cabral to Haiti</em>. Resende, RJ: – AHIMTB,&nbsp;Brazilian Military History Academy, 2015. 680 pp. 330 Illustrations. ISBN: 978-85-60811-24-3.</p>

关于html - 网站上的作品引用页面,除第一行外的所有内容均缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34913550/

相关文章:

javascript 或 jquery,点击一个链接并展开一个 div

html - 重新调整浏览器大小时,如何防止 float 的 div 元素换行?

javascript - jquery选择的链接激活但不同的div

HTML HREF,如何从根设置相对路径(不使用 ".."向上移动)?

css - 使用 VS 2013 Web Essentials 将 SASS 变量写入 CSS 文件

javascript - W3 CSS 动画

html - 在右侧放置一个div

.net - IE 6 中不需要的背景色

jquery - 在 jquery 模型中运行脚本

css - 在响应式设计中同时使用 Canvas 外和固定导航栏