1.编写网页第一步:
新建站点文件夹, 里面应该包含css文件夹/js文件夹/images文件夹/index.html文件
注意点:
站点文件夹可以是中文, 但是里面的子文件夹或者子文件不能出现中文
2.编写网页第二步:
新建css文件, 在这个文件夹中做一些初始化操作
清空默认的样式
1.为什么要清空默认边距(外边距和内边距)
在企业开发中为了更好的控制盒子的宽高和计算盒子的宽高等等, 所以在企业开发中, 编写代码之前第一件事情就是清空默认的边距2.如何清空默认的边距
格式*{
margin: 0;
padding: 0;
}
3.注意点
通配符选择器会找到(遍历)当前界面中所有的标签, 所以性能不好
企业开发中可以从这个网址中拷贝http://yui.yahooapis.com/3.18.1/build/cssreset/cssreset-min.css
-------------------------------------------------------------------------------------------------------------------
/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}
--------------------------------------------------------------------------------------------------------------------------
设置全局的样式
将新建的css文件和当前的index.html文件关联起来
-
网友评论