hao

 

CSS使用的一些心得

1.对于Position:

Position用relative或者absolute时用top、left、right、bottom,而float时用margin

Position用relative即相对定位时,是相对于原来的位置进行移动的

Position用fixed时,fixed总是以body为定位时的对象,总是根据浏览器的窗口来进行元素的定位,通过"left"、 "top"、 "right"、 "bottom" 属性进行定位。

2.使用字体

使用Google Font,先在html里面导入字体的css链接,然后在自己的css里面用就可以了

使用@font-face

3.多重id、class

#login_1 #form 要加空格

.sideBar_top_thing img

 

评论