站内搜索:
首页 >> 前端 >> 内容
CSS样式之背景图片

时间:2015/9/29 9:36:47

1、css样式背景之使用图片来做为背景

example:
<!DOCTYPE html>
<html>
     <head>
           <meta http-equiv="content-type" content="text/html;charset=utf-8">
           <title>页面一</title> 
           <style>
               .logo{
                    background:url('image/gouwu.image') -19px -18px;height:20px;width:20px; no-repeat;
               }
           </style>
     </head>
     <body>
          <p class='logo' ></p>
     </body>
</html>

 


  • 上一篇:css样式之边框和内外边距
  • 下一篇:HTML(网页设计)必用的设计模式---------CSS网页编程
  • 返回顶部