1、不包含类red-text的p元素:
p:not(.red-text){
font-family:Monospace;
}
2、引用google字体
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
给h2的属性font-family添加值为Lobster:
h2{font-family:Lobster;}
3、当浏览器不支持某种字体时,应将其降级为另外一种字体:
p{font-family:Helvetica,Sans-serif;}
4、消除input在webkit内核浏览器的黄色背景
input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset; }
5、getElementsByTagName()返回节点列表,是一个节点数组。
<body>
<p>1</P>
</p>2</p>
</body>
<script>
var ps=document.getElementsByTagName("p");
document.write("第二个文本是"+ps[1].innerHTML);
</script>
6、h5中,可以为html添加新的元素。
<script>
document.createElement("myLove");
</script>
<body>
<p>我要学习</p>
<myLove>h5可以添加新元素。</myLove>
</body>
7、媒体查询
a、links方法引入。
<link rel="stylesheet" media="screen and (max-width:600px)" href="liu.css"/>
当屏幕宽度小于600px时,调用liu.css文件。
and为关键词,还有not,only。
max-width:600px;为媒体条件。
b、@import方法引入
c、xml方式引入