博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css
阅读量:6279 次
发布时间:2019-06-22

本文共 4127 字,大约阅读时间需要 13 分钟。

1.不常见字体提前加载

#text{

font-family: "微软雅黑", "黑体" sans-serif; /*表示选无衬线字体*/
}


 

2.设置图片背景

 

背景图和背景色优先显示背景图

#text{

background-color:blue;   /*控制图片的位置*/

background-image:url(big.jpg); /*图片*/

background-repeat:no-repeat;/*也可以background-repeat:repeat-x;background-repeat:repeat-y;*/

background-fixed;

background-position:center top; /*控制图片的位置*/

/*背景用同一张大背景  移动大背景*/

background-position:0px -120px;/*左上角为0 0 原点*/

}

 


 

3.选择器

id 选择器                    #div     唯一ID

类选择器 class      .div      同名的人

标签选择器 div  ,p 

派生选择器div p          只对div下的p标签起作用

属性选择器    a[href][title]{color:red;} /*将带有href 和title的HTML 超链接的文本设置为红色*/  

后代选择器

h1 em {color:red;}    

This is a important heading

/*假设有一个文档,其中有一个边栏,还有一个主区。边栏的背景为蓝色,主区的背景为白色,这两个区都包含链接列表。不能把所有链接都设置为蓝色,因为这样一来边栏中的蓝色链接都无法看到。

解决方法是使用后代选择器。在这种情况下,可以为包含边栏的 div 指定值为 sidebar 的 class 属性,并把主区的 class 属性值设置为 maincontent。然后编写以下样式:*/

div.sidebar {background:blue;}div.maincontent {background:white;}div.sidebar a:link {color:white;}div.maincontent a:link {color:blue;}

 选择器的优先级

text1{color:red}  /*控制越精细优先级越高   火狐浏览器可查看*/ 

.text2{color:red}

#text{color:red}

div #text1{color:red}

<p id="text1" class="text2">好好学习</p>


 

css的引入方式

外部链接一个css文件,<link href="css/my.css" rel="stylesheet" type="text/css"/>

头部直接引用:  <style type="text/css">div{maign:0;padding:0;border:1px solid red;}</style>

外部多个css文件时:<style type="text/css">@import url(my.css);</style>

直接在标签里面写入对个标签的css控制: <div style="border:1px solid red;"">测试</div>

 


 

css初始化

在不同浏览器中,显示的效果稍有不同,各浏览器对各元素magin,border,font-size略有不同

通过css强制让所有元素的属性值都一样,整个过程及时初始化。

腾讯QQ官网 样式初始化

  1. body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select{
    margin:0;padding:0} 
  2. body{
    font:12px"宋体","Arial Narrow",HELVETICA;background:#fff;-webkit-text-size-adjust:100%;} 
  3. a{
    color:#2d374b;text-decoration:none} 
  4. a:hover{
    color:#cd0200;text-decoration:underline} 
  5. em{
    font-style:normal} 
  6. li{
    list-style:none} 
  7. img{
    border:0;vertical-align:middle} 
  8. table{
    border-collapse:collapse;border-spacing:0} 
  9. p{word-wrap:break-word} 

 

新浪官网 样式初始化
  1. body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div{
    margin:0;padding:0;border:0;} 
  2. body{
    background:#fff;color:#333;font-size:12px; margin-top:5px;font-family:"SimSun","宋体","Arial Narrow";} 
  3.  
  4. ul,ol{
    list-style-type:none;} 
  5. select,input,img,select{
    vertical-align:middle;} 
  6.  
  7. a{
    text-decoration:none;} 
  8. a:link{
    color:#009;} 
  9. a:visited{
    color:#800080;} 
  10. a:hover,a:active,a:focus{
    color:#c00;text-decoration:underline;} 

淘宝官网 样式初始化
 

  1. body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padding:0; } 
  2. body, button, input, select, textarea { font:12px/1.5tahoma, arial, \5b8b\4f53; } 
  3. h1, h2, h3, h4, h5, h6{ font-size:100%; } 
  4. address, cite, dfn, em, var { font-style:normal; } 
  5. code, kbd, pre, samp { font-family:couriernew, courier, monospace; } 
  6. small{ font-size:12px; } 
  7. ul, ol { list-style:none; } 
  8. a { text-decoration:none; } 
  9. a:hover { text-decoration:underline; } 
  10. sup { vertical-align:text-top; } 
  11. sub{ vertical-align:text-bottom; } 
  12. legend { color:#000; } 
  13. fieldset, img { border:0; } 
  14. button, input, select, textarea { font-size:100%; } 
  15. table { border-collapse:collapse; border-spacing:0; } 

网易官网 样式初始化
 

  1. html {overflow-y:scroll;} 
  2. body {
    margin:0; padding:29px00; font:12px"\5B8B\4F53",sans-serif;background:#ffffff;} 
  3. div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p{
    padding:0; margin:0;} 
  4. table,td,tr,th{
    font-size:12px;} 
  5. li{
    list-style-type:none;} 
  6. img{
    vertical-align:top;border:0;} 
  7. ol,ul {
    list-style:none;} 
  8. h1,h2,h3,h4,h5,h6{
    font-size:12px; font-weight:normal;} 
  9. address,cite,code,em,th {
    font-weight:normal; font-style:normal;} 

 

yahoo

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,   
form,fieldset,input,textarea,p,blockquote,th,td {   
    padding: 0;   
    margin: 0;   
}   
table {   
    border-collapse: collapse;   
    border-spacing: 0;   
}   
fieldset,img {   
    border: 0;   
}   
address,caption,cite,code,dfn,em,strong,th,var {   
    font-weight: normal;   
    font-style: normal;   
}   
ol,ul {   
    list-style: none;   
}   
caption,th {   
    text-align: left;   
}   
h1,h2,h3,h4,h5,h6 {   
    font-weight: normal;   
    font-size: 100%;   
}   
q:before,q:after {   
    content:'';   
}   
abbr,acronym { border: 0;   
}  

 

转载于:https://www.cnblogs.com/chendi618/p/5631127.html

你可能感兴趣的文章
Windows下的Jupyter Notebook 的介绍(写给新手)(图文详解)
查看>>
iOS开发-CocoaPods实战
查看>>
JS组件系列——Bootstrap 树控件使用经验分享
查看>>
HTML-color:rgb()-颜色渐进
查看>>
数据库实例: STOREBOOK > 表空间 > 编辑 表空间: UNDOTBS1
查看>>
Mcad学习笔记之异步编程(AsyncCallback委托,IAsyncResult接口,BeginInvoke方法,EndInvoke方法的使用小总结)...
查看>>
Javascript防冒泡事件与Event对象
查看>>
1.LinQ初体验 简单的示例(原创)
查看>>
Docker容器学习梳理--Volume数据卷使用
查看>>
WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!
查看>>
ios 人脸检测
查看>>
Android设计中的.9.png
查看>>
CentOS下Mycat+MySQL水平分割负载均衡配置记录
查看>>
Ubuntu & GitLab CI & Docker & ASP.NET Core 2.0 自动化发布和部署(2)
查看>>
Java中的泛型
查看>>
linux wa%过高,iostat查看io状况
查看>>
使用 TreeView IE Web 控件
查看>>
我心中的核心组件(可插拔的AOP)~第六回 消息组件~续
查看>>
WPF编游戏系列 之二 图标效果
查看>>
pc/app 项目/功能设计
查看>>