块级元素和行内元素分别有哪些?动手测试并列出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
- 块级元素独占一行,在默认情况下,宽度自动填满父元素宽度
- 行内元素不会独占一行,宽度随着元素的内容而变化
- 行内元素的width和height的设置无效
- 行内元素的margin和padding的垂直方向上不产生边距效果
什么是 CSS 继承? 哪些属性能继承,哪些不能?
继承是CSS的一个主要特征,它是依赖于祖先-后代的关系的。继承是一种机制,它允许样式不仅可以应用于某个特定的元素,还可以应用于它的后代。
- 无继承性的属性
-
display:规定元素应该生成的框的类型
-
文本属性:
vertical-align:垂直文本对齐
text-decoration:规定添加到文本的装饰
text-shadow:文本阴影效果
white-space:空白符的处理
unicode-bidi:设置文本的方向 -
盒子模型的属性:width、height、margin 、margin-top、margin-right、margin-bottom、margin-left、border、border-style、border-top-style、border-right-style、border-bottom-style、border-left-style、border-width、border-top-width、border-right-right、border-bottom-width、border-left-width、border-color、border-top-color、border-right-color、border-bottom-color、border-left-color、border-top、border-right、border-bottom、border-left、padding、padding-top、padding-right、padding-bottom、padding-left
-
背景属性: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
-
生成内容属性:content、counter-reset、counter-increment
-
轮廓样式属性:outline-style、outline-width、outline-color、outline
-
页面样式属性:size、page-break-before、page-break-after
-
声音样式属性:pause-before、pause-after、pause、cue-before、cue-after、cue、play-during
- 有继承性的属性
-
字体系列属性
font:组合字体
font-family:规定元素的字体系列
font-weight:设置字体的粗细
font-size:设置字体的尺寸
font-style:定义字体的风格
font-variant:设置小型大写字母的字体显示文本,这意味着所有的小写字母均会被转换为大写,但是所有使用小型大写字体的字母与其余文本相比,其字体尺寸更小
font-stretch:对当前的 font-family 进行伸缩变形。所有主流浏览器都不支持
font-size-adjust:为某个元素规定一个 aspect 值,这样就可以保持首选字体的 x-height -
文本系列属性
text-indent:文本缩进
text-align:文本水平对齐
line-height:行高
word-spacing:增加或减少单词间的空白(即字间隔)
letter-spacing:增加或减少字符间的空白(字符间距)
text-transform:控制文本大小写
direction:规定文本的书写方向
color:文本颜色 -
元素可见性:visibility
-
表格布局属性:caption-side、border-collapse、border-spacing、empty-cells、table-layout
-
列表布局属性:list-style-type、list-style-image、list-style-position、list-style
-
生成内容属性:quotes
-
光标属性:cursor
-
页面样式属性:page、page-break-inside、windows、orphans
-
声音样式属性:speak、speak-punctuation、speak-numeral、speak-header、speech-rate、volume、voice-family、pitch、pitch-range、stress、richness、、azimuth、elevation
- 所有元素可以继承的属性
- 元素可见性:visibility
- 光标属性:cursor
- 内联元素可以继承的属性
- 字体系列属性
- 除text-indent、text-align之外的文本系列属性
- 块级元素可以继承的属性
- text-indent、text-align
如何让块级元素水平居中?如何让行内元素水平居中?
- 块级元素水平居中:margin : 0 auto;
- 行内元素水平居中:text-align : center;
用 CSS 实现一个三角形
.triangle{
width:0;
height:0;
border-left:20px solid transparent;
border-right:20px solid transparent;
border-bottom:20px solid blue;
}
单行文本溢出加 ...如何实现?
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 这些字体中选择
- 中间有空格的存在,要加引号,避免出现歧义,不然会被浏览器认为是两个元素
- \5b8b\4f53是字体的Unicode码,表示黑体
网友评论