块级元素和行内元素分别有哪些?动手测试并列出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属性,行内元素不能设置宽高
- 块级元素宽度默认占整行,而行内元素宽度自适应大小
- 块级元素可以包含块级元素和行内元素,而行内元素只能包含文本和行内元素
- 行内元素设置上下外边距会失效,设置上下内边距有效但不占高度
什么是 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
。
如何让块级元素水平居中?如何让行内元素水平居中?
- 设置左右外边距的值为auto;
- 设置text-align:center;
用 CSS 实现一个三角形
.sanjiao { 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; }
- 字体大小为12px
- 字体行高为1.5倍字体大小
- 字体可在tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',sans-serif 这些字体中选择(若都不存在,则为浏览器默认字体)
- 当有空格或者Unicode码时,需要加引号
- \5b8b\4f53是字体的Unicode码,表示宋体
代码1 . 参考
<a href="http://js.jirengu.com/cubelebiji/1/edit?html,css">代码2</a> . 参考
<a href="http://js.jirengu.com/lutayotiwo/1/edit?html,css">代码3</a> .参考
<a href="http://js.jirengu.com/rezigisiri/1/edit">代码4</a> .
<a href="http://js.jirengu.com/konusuxira/1/edit?html,css,output">代码5</a> . 参考