常用的一些css(持续更新)

超出部分隐藏

overflow: hidden;

text-overflow:ellipsis;

white-space: nowrap;

选择偶数子元素

p:nth-child(2)

{

background:#ff0000;

}

flex换行

 display: flex;

             /*默认不换行*/

             /*flex-wrap: nowrap;*/

             /*换行,第一行在上方*/

             flex-wrap: wrap;

             /*换行,第一行在下方*/

             /*flex-wrap: wrap-reverse;*/

文本两端对齐

text-align-last:justify;

修改placeholder

input::placeholder {

  color:#red;

}

textarea大小不可修改

{

  resize:none;

}

最后一个子元素

p:last-child

{

background:#ff0000;

}

你可能感兴趣的:(常用的一些css(持续更新))