首页 > 代码库 > css常用技巧

css常用技巧

去点号
list-style:none; 

 

字体居中

text-align:center; 

 

链接去下划线

text-decoration:none;

 

鼠标禁止右键

<body oncontextmenu=self.event.returnValue=http://www.mamicode.com/false onselectstart="return false"> <!-- 禁止右键-->

 

单行文字垂直居中,需要div高和行高相等

height:60px;line-height:60px;

 

div里的文字水平居中,加上 text-align:center

height:60px;line-height:60px;text-align:center;

 

 



css常用技巧