块级元素和行内元素分别有哪些?动手测试并列出4条以上的特性区别
- 块级元素有: div h1 h2 h3 h4 h5 h6 p hr form ul dl ol pre table li dd dt tr td th
- 行内元素有: em strong span a br img button input label select textarea code script
块级元素的特性:
- 单独占一行
- 可以设置宽高
- 可以包涵行内元素和块级元素
- margin 和panding ,块级可以设置上下左右
行内元素的特性:
- 不会独占一行,相邻的行内元素会排列在同一行知道排不下为止。
- 宽高对行内元素设置无效
- 只能包含行内元素和文本
- margin 和 panding ,行内元素只能设置左右
什么是 CSS 继承? 哪些属性能继承,哪些不能?
- css继承:设置父级元素,其子级元素的样式会和父级元素一样
- 不可继承的:display、margin、border、padding、background、height、min-height、max-height、width、min-width、max-width、overflow、position、left、right、top、bottom、z-index、float、clear、table-layout、vertical-align、page-break-after、page-bread-before和unicode-bidi。
- 所有元素可继承:visibility和cursor。
- 内联元素可继承:letter-spacing、word-spacing、white-space、line-height、color、font、font-family、font-size、font-style、font-variant、font-weight、text-decoration、text-transform、direction。
- 终端块状元素可继承:text-indent和text-align。
- 列表元素可继承:list-style、list-style-type、list-style-position、list-style-image。
如何让块级元素水平居中?如何让行内元素水平居中?
块级元素: margin: 0 auto;
行内元素: text-align: center;
单行文本溢出加 ...如何实现?
E {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
px, em, rem 有什么区别
- px:固定单位
- em: 相对单位,相对于父元素字体大小
- rem: 相对单位,相对于根元素(html)字体大小
网友评论