标签:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <style type="text/css"> *{ margin:0px; } div { background-color:aliceblue; height:30px; margin:0px auto; width:1400px; } ul li { float: left; list-style: none; width: 265px; line-height: 30px; font-weight: bolder; } A:hover { font-size: x-large; } a { text-decoration:none; } </style> </head> <body> <div> <ul> <li><a href="#">公司主页</a></li> <li><a href="#">企业文化</a></li> <li><a href="#">产品介绍</a></li> <li><a href="#">交易大厅</a></li> <li><a href="#">联系我们</a></li> </ul> </div> </body> </html>
标签:
原文地址:http://www.cnblogs.com/mikie/p/4649071.html