首页 > 代码库 > css 样式小窍门
css 样式小窍门
css 样式小窍门
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>页面分布</title> <style> body { margin: 0; /*让整个页面的边距消失*/ } .pg-head { height: 40px; background-color: dodgerblue; line-height: 30px; /*调整这个标签里面中的文字水平的位置*/ } .w{ width: 760px; margin: 0 auto; /*居中*/ } ul{ margin: 0; list-style-type: none; } ul li { float: left; padding:0 20px 0 20px; cursor: pointer; margin-top: 4px; font-size: 5px; } ul li:hover{ /*伪类,当鼠标移动当该标签上时自动应用此效果*/ background-color: darkblue; } </style> </head> <body> <div class="pg-head"> <div class="w"> <ul> <li>菜单一</li> <li>菜单二</li> <li>菜单三</li> </ul> </div> </div> <div class="pg-body"></div> <div class="pg-footer"></div> </body> </html>
css 样式小窍门
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。