1.块级元素和行内元素分别有哪些?
- 块级元素(block-level)
div h1 h2 h3 h4 h5 h6 p hr
form ul dl ol pre table
li dd dt tr td th
- 行内元素(内联、inline-level)
em strong span a br img
button input label select textarea
code script
-注意: input默认为inline-block
-
区别:
- 块级元素占据一整行空间,行内元素占据自身宽度空间
- 宽高属性的设置只对块级元素有效,对行级元素无效
- 块级元素可以包含块级元素和行内元素,行内元素只能包含文本和行内元素
- 边距设置上有区别,块级元素四个方向的margin和padding都可以设置,而行内元素只能设置左右margin,设置了上下margin没用,可以设置左右padding,但是设置了上下padding会对边框和背景色会被撑开,看起来好像上下pdiding也生效了,其实自身位置和高度并没有发生变化
2.什么是 CSS 继承? 哪些属性能继承,哪些不能?
-
CSS继承
- 被包在内部的标签将拥有外部标签的样式性,即子元素可以继承父元素的属性
-
能继承的属性
字体相关属性:font,font-family,font-weight,font-size,font-style,font-stretch,font-size-adjust
文本相关属性: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<br列表布局属性:list-style-type,list-style-image,list-style-position,list-style
生成内容属性:quotes
光标属性:cursor
页面样式属性:page,page-break-inside,window,orphans
声音样式属性:speak,speak-punctuation….
- 不能继承的属性
display
文本属性:vertical-align,text-shadow,text-decoration,white-space,unicode-bidi
盒子模型相关属性:width,height,margin,border,padding
背景相关属性:background,background-XXX
定位属性: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
3.如何让块级元素水平居中?如何让行内元素水平居中?
-
块级元素居中:首先要给这个块级元素设置一个宽度,然后用margin: x auto;
-
行内元素居中:在块状元素内部用text-align: center;
4.用 CSS 实现一个三角形
5.单行文本溢出加 ...如何实现?
- 设置如下样式
selector{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
6.px, em, rem 有什么区别
- px:固定单位,像素
- em:相对单位,相对单位,相对于父元素字体大小
- rem:相对单位,相对于根元素(html)字体大小
7.解释下面代码的作用?为什么要加引号? 字体里\5b8b\4f53代表什么?
body{
font: 12px/1.5 tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',sans-serif;
}
- 作用
- 设置文本样式,文本文字大小为12px,文字所占行高为字体像素值的1.5倍。字体首选tahoma,没有tahoma时选arial,以此类推依次选择'Hiragino Sans GB','\5b8b\4f53',sans-serif。
- 引号的作用
- 某种字体的英文单词表达方式为多个单词时,用引号将它们括起来,避免被认为是多种字体
- \5b8b\4f53 代表黑体
ps: 用Unicode码表示字体时,打开控制台 escape('微软雅黑'),把 %u替换成 \
网友评论