使用CSS隐藏1行文本

时间:2017-06-09 07:19:15

标签: html css

我在PHP文件中有两行代码

<div align="center">The quick brown fox</div>
<div align="center">jumps over the lazy dog.</div>

如何只隐藏用CSS显示的第一行文字?

4 个答案:

答案 0 :(得分:4)

试试这个:

div[align="center"]:first-child {
       display:none;
}

答案 1 :(得分:3)

div:first-of-type {     display:none; }

答案 2 :(得分:1)

试试这个:

div:nth-of-type(1) {
  display: none;
}

它使用nth-of-typeMozilla docs)选择器

答案 3 :(得分:-3)

<div align="center" hidden="yes">The quick brown fox</div>
<div align="center">jumps over the lazy dog.</div>
  1. 仅添加hidden="yes"

  2. 使用CSS display="none";