task8

问答

为何img、input等内联元素可设置宽高

1. 块级元素和行内元素分别有哪些?动手测试并列出4条以上的特性区别

块级元素: p, h1~h6, div, form, ul, ol, li, address, fieldset, hr, menu, table
行内元素: strong, em, span, br(替换元素), img(..) , input, label, select, textarea, cite

区别:

  • 块级元素占据一整行空间,行内元素只占据自身宽度的空间,一行中可以排列多个行内元素。

  • 块级元素可以包含块级元素和行内元素,行内元素只能包含行内元素和文本。

  • 块级元素可以设置宽高,行内元素设置宽高是无效的。

  • 行内元素设置宽高无效(可以设置line-height)

  • margin左右有效 上下无效,设置padding时左右会把距离推开,而上下会延伸到别的行内,但不会增加上下两行之间的距离。

    2. 什么是 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

3. 如何让块级元素水平居中?如何让行内元素水平居中?

块级元素水平居中:设置其宽度,并把左右margin设为auto
行内元素水平居中:text-align: center;

4. 用 CSS 实现一个三角形

task8_第1张图片
canvas.png

5. 单行文本溢出加 ...如何实现?

white-space:nowrap;   
overflow:hidden; 
text-overflow:ellipsis;

6. px, em, rem 有什么区别

px: 绝对/固定单位,浏览器默认文字大小为16px
em: 相对单位,表示当前字体大小是父容器字体大小的多少倍
rem:相对单位,表示当前字体大小是根元素(html)字体大小的多少倍

7. 解释下面代码的作用?为什么要加引号? 字体里\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编码表示

8.代码实现

  • border处理
  • 阴影按钮
  • 表格
  • 三角形
  • 卡片

你可能感兴趣的:(task8)