美文网首页
前端杂疑

前端杂疑

作者: lozio | 来源:发表于2015-06-21 16:30 被阅读0次

    一. display:[inline/block/inline-block/none]

    Inline Elements:
    1. respect left & right margins and padding, but not top & bottom
    2. cannot have a width and height set
    3. allow other elements to sit to their left and right
    Block elements:
    1. respect all of those
    2. force a line break after the block element
    Inline-block elements:
    1. allow other elements to sit to their left and right
    2. respect top & bottom margins and padding
    3. respect height and width
    none
    1. display:none 不占据任何空间
    2. visibility:hidden 占据普通流内的空间

    二、Cookies

    1. BOM提供了储存和提取Cookie的接口: 利用document.cookie对象来存取cookie,但是原生的JavaScript不提供具体操作Cookie的方法。

    三、link与@import

    1. 页面加载时,同时加载link; 而@import应用的css等页面加载完毕后加载
    2. link的权重比@import大

    四、盒子模型

    1. 分为IE盒子模型和标准w3c盒子模型;IE的content部分包含border和padding;
    2. 标准的盒子部分分为4部分: content、padding、margin、border

    五、选择器、优先级算法、CSS3新增伪类

      1. id selector(#id)
      2. class selector(.class)
      3. tags selector(div, h1, p)
      4. siblings selector(h1 + p)
      5. 子选择器(ul>li)
      6. 后代选择器(li a)
      7. 通配符选择器(*)
      8. 属性选择器(a[hel = "external"])
      9. 伪类选择器(a:hover, li:nth-child)
    • Inherit able: font-size; font-family; color; text-indent;

    • Inherit unable: border; padding; margin; width; height;

    • 优先级就近原则,同权重情况样式定义最近者为准

    • 载入样式以最后载入的定位为准

    优先级:
    !important > id > class > tag
    important > 内联 > id

    CSS3伪类:

    • p:first-of-type 选择属于其父元素的首个 p 元素的每个 p 元素
    • p:last-of-type 选择属于其父元素的最后 p 元素的每个 p 元素
    • p:only-of-type 选择属于其父元素唯一的 p 元素的每个 p 元素
    • p:only-child 选择属于其父元素的唯一子元素的每个 p 元素
    • p:nth-child(2) 选择属于其父元素的第二个子元素的每个 p 元素
    • :enabled :disabled 控制表单控件的禁用状态。
    • :checked 单选框或复选框被选中

    position:[absolute, relative, fiexed]

    • absolute 相对于父元素定位(除static定位外)
    • fixed 固定定位,相对于浏览器窗口
    • relative 相对自身在普通流中的位置定位
    • static 默认值,普通流中定位
    • inherit 继承父元素的属性

    相关文章

      网友评论

          本文标题:前端杂疑

          本文链接:https://www.haomeiwen.com/subject/ynisqttx.html