块级元素和行内元素分别有哪些?动手测试并列出4条以上的特性区别
- 块元素:h1-h6,p,div,ul,li,ol,dl,dt,dd,table,tr,td,th,hr,form
- 行内元素:span,img,a,em,strong,br,input,button,label,textarea,select,code
- 两者区别:
- 块元素独占一行,行内元素排在一行
- 宽高只对块元素生效,行内元素无效
- 快元素正常显示margin、padding,行内元素上下的margin和padding不生效
- 块元素没设置宽度,会默认继承父元素宽度。而行内元素宽度由内容撑开
- 行内元素代码换行会被解析
什么是 CSS 继承? 哪些属性能继承,哪些不能?
即子元素继承其父元素的属性
- 可继承
- 字体属性类 font-family , font-weight , font-size , font-style
- 文本系列属性 text-indent , text-align , line-height , word-spacing, letter-spacing , color
- 元素可见性 visibility
- 表格布局属性 caption-side , border-collapse , border-spacing , empty-cells , table-layout
- 列表布局属性 list-style-type , list-style-image , list-style-position , list-style
- 不可继承
- display
- 文本属性 vertical-align ,text-decoration ,text-shadow , white-space
- 盒子模型的属性 width、height、margin、border、border-style、border-width、border-color、padding
- 背景属性 background、background-color、background-image、background-repeat、background-position、background-attachment
- 定位属性float、clear、position、top、right、bottom、left、min-width、min-height、max-width、max-height、overflow、clip、z-index
如何让块级元素水平居中?如何让行内元素水平居中?
块级元素:margin:0 auto;(0的值为上下可随意)
行内元素:对其父元素设置text-align:center
用 CSS 实现一个三角形
<style>
div{
width: 0px;
height: 0px;
border: 50px solid;
border-color:transparent transparent blue transparent;
}
</style>
<div></div>```
## 单行文本溢出加 ...如何实现?
```white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;```
## px, em, rem 有什么区别
px:像素,固定单位
em:相对单位,相对于父元素字体大小
rem:相对单位,相对于根元素(html)字体大小
## 解释下面代码的作用?为什么要加引号? 字体里\5b8b\4f53代表什么?
body{
font: 12px/1.5 tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',sans-serif;
}```
body元素的字体大小为12px,行高为字体大小1.5倍
tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',sans-serif这些为设置字体,从左到右依次寻找浏览器和系统中是否存在
'Hiragino Sans GB'加引号是说明这是一种字体,不然会被解析成3种字体
'\5b8b\4f53'为宋体的Unicode编码表示方式,是为了防止直接写中文的情况下编码(GB2312、UTF-8 等)不匹配时会产生乱码。
网友评论