开发每个静态网站是的模版代码(自己开发是长期优化过的觉得最简的代码)
版权声明:
本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《
阿里云开发者社区用户服务协议》和
《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写
侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
简介:
/*Index page,designed by tuzuoquan,version:1.0,2012-7-16*/
/**Styles which is common in most website,the styles blow
can controll all the pages in the website.**/
/*全局样式*/
/*这里是子页面的CSS样式*/
*
/*Index page,designed by tuzuoquan,version:1.0,2012-7-16*/
/**Styles which is common in most website,the styles blow
can controll all the pages in the website.**/
/*全局样式*/
/*这里是子页面的CSS样式*/
*{
margin:0px;
padding:0px;
border:0px;
font:13px/1.4em "宋体";
text-align:center;
}
body{
background:#105645;
}
a{
text-decoration:none;
}
a:link,a:visited {
text-decoration:none;
color:#FF0000;
}
a:hover,a:active {
text-decoration:underline;
}
p{
text-align:left;
}