美文网首页
H5 css属性简写

H5 css属性简写

作者: 蝼蚁撼树 | 来源:发表于2017-03-16 13:30 被阅读0次

    font缩写

    /*
    如果用 font 属性的话,就可以把几个样式进行简化,减少书的情况;
    font 属性的值应按以下次序书写(各个属性之间用空格隔开):
    顺序:font-style(字体样式)(normal(正常)、italic(斜体)或oblique(倾斜)): normal(正常)、
    italic(斜体)或oblique(倾斜); 
    | font-variant(字体变化): | font-weight(字体浓淡): 
    | font-size | line-height | font-family
    */
    

    background 缩写

    语法:
    Object.style.background=
    background-color
     background-image
    background-repeat 
    background-attachment
    background-position
    
    
    
    参数 描述
    background-color 设置元素的背景色。
    background-image 设置背景图像。
    background-repeat 设置背景图像是否及如何重复。
    background-attachment 背景图像是否固定或者随着页面的其余部分滚动。
    background-position 设置背景图像的起始位置。

    下面是相应参数对应的值

    
    background-color    设置元素的背景色。   
    color-name
    color-rgb
    color-hex
    transparent
    background-image    设置背景图像。 
    url(URL)
    none
    background-repeat   设置背景图像是否及如何重复。  
    repeat
    repeat-x
    repeat-y
    no-repeat
    background-attachment   背景图像是否固定或者随着页面的其余部分滚动。  
    scroll
    fixed
    background-position 设置背景图像的起始位置。    
    top left
    top center
    top right
    center left
    center center
    center right
    bottom left
    bottom center
    bottom right
    x% y%
    xpos ypos
    

    文章陆续更新中...

    相关文章

      网友评论

          本文标题:H5 css属性简写

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