本篇内容介绍了“CSS和HTML的初始化模板怎么写”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
1、CSS初始化模板
CSS初始化代码如下:
@charset "utf-8";
body, div, address, blockquote, iframe, ul, ol, dl, dt,
dd, li, dl, h2, h3, h4, h5, pre, table, caption, th, td, form,
legend, fieldset, input, button, select, textarea {margin:0;
padding:0;font-style: normal;font:12px/22px Arial, Helvetica, sans-serif;}
ol, ul ,li{list-style: none;}
img {border: 0; vertical-align:middle;}
body{color:#000000;background:#FFF; text-align:center;}
.clear{clear:both;height:1px;width:100%; overflow:hidden; margin-top:-1px;}
a{color:#000000;text-decoration:none; }
a:hover{color:#BA2636;text-decoration:underline;}
.red ,.red a{ color:#F00;}
.lan ,.lan a{ color:#1E51A2;}
说明下以上的CSS代码:
以上CSS代码设置初始化了div、li、a、body、img、ul、h2-h5等常用标签的的CSS样式。
2、html初始化模板
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=utf-8" />
<title>DIVCSS5-www.编程网.com</title>
<meta name="keywords" content="关键字" />
<meta name="description" content="描述-www.qqtouxiang001.com" />
<link href="images/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
正式内容
</body>
</html>
这里说明下,这里是现在较简单的html结构初始化代码。
“CSS和HTML的初始化模板怎么写”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!