块级元素和行内元素分别有哪些?动手测试并列出4条以上的特性区别
块级元素:div p hr form h1~h6 ul ol li dl dt dd table tr td th
行内元素:a span em strong br img button input label select
块级元素与行内元素的区别:
块级元素的宽度占据本行,行内元素的宽度为自身文本的宽度,可在一行内连续排列,直到占满本行。
块级元素内部可以包裹块级和行内元素,而行内元素内部只能包裹行内元素。
块级元素可以设置宽高;行内元素则不能设置宽高。
块级元素可以设置上下左右的margin、padding 边距;行内元素只对左右方向的margin、padding生效,上下无效。
什么是 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
列表布局属性: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
如何让块级元素水平居中?如何让行内元素水平居中?
块级元素:1 固定宽度div:设置 margin-left:auto;margin-right:auto;
2 不固定宽度div: margin:0,Y px;(Y为div距左右边框的距离,根据需求设置)
行内元素:在父元素上设置text-align:center;
用 CSS 实现一个三角形
.trigon2{
width: 0;
height: 0;
border-top: 40px solid blue;
border-right: 40px solid transparent;
border-bottom: 40px solid transparent;
border-left: 40px solid transparent;
}
单行文本溢出加 ...如何实现?
p{
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;
/*font: 12px/1.5指字体大小12px,行高为父元素1.5倍*/
/*tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',sans-serif8 都是字体名称,代表使用字体的优先级。先用tahoma,如果没有这个字体那么按顺序选用arial,以此类推。*/
/*加引号是因为其中有空格,否则会被认为是三个单词。\5b8b\4f53是unicode的编码方式,代表宋体。*/
}