zoukankan      html  css  js  c++  java
  • 每日总结

    今天学习了css里面的图片背景

    CSS可以使用background或background-image直接引用图片地址来设置图片作为对象背景。

    background:url(http://www.divcss5.com/img/logo.gif);设置DIVCSS5的LOGO图片作为背景

    background-image:url(http://www.divcss5.com/img/logo.gif);具有相同效果。

    background-attachment使用解析:
    background-attachment:fixed; 背景固定
    background-attachment:scroll css背景图片是随对象内容滚动

    图片background背景语法:

    background-image :url (url)
    background-image :url (http://www.divcss5.com/img201301/divcss5-logo-2013.gif)设置对象背景为图片http://www.divcss5.com/img201301/divcss5-logo-2013.gif

    如果图片作为背景时候要求是否重复平铺,平铺方向等我们都需要background-position和background-repeat配合使用

    div{background-image :url (http://www.divcss5.com/img201301/divcss5-logo-2013.gif);
    background-repeat : no-repeat;background-position : 5px 6px } 
    

      

  • 相关阅读:
    文摘
    Maximal Square leetcode
    Majority Element II
    Merge k Sorted Lists leetcode
    学习方法-暗时间
    4sum leetcode
    valid parentheses
    两道考研算法设计题- 2010 2013
    regular expression matching DP
    valid sudoku leetcode
  • 原文地址:https://www.cnblogs.com/wrljzb/p/14910106.html
Copyright © 2011-2022 走看看