随便看看吧
1. css可以继承的属性有哪些?
Font 系列 text系列 color line-height
2. border-radius的值的问题
border-radius:7px 7px 7px 0;
四个值的顺序是 左上 右上 右下 左下。
3. white-space 规定段落中的文本换不换行往往值是nowrap 不换行
4.Word-wrap 属性允许长的内容可以自动换行 属性值是 break-word 允许默认是不允许
5.写三角形
div{
width:0;
height:0;
border-top:5px solid transpartent;
border-right:5px solid transparent;
border-bottom: 5px solid blue;
border-left :5px solid transparent;
}