浮动float,其属性只有相左left和想youright浮动
浮动后需要用clear:both来清除浮动
具体使用浮动做的导航栏代码如下:
<html> <head> <meta charset="utf-8"> <title>边框</title> <link rel="icon" href="" type="image/x-icon"> <style type="text/css"> .border{ width: 100px; height: 100px; border: none/*1px solid #ccc*/; border-radius: 50%; box-shadow: 0px 10px 100px #ccc; float: left; background-color: #bbb; } ul li{list-style: none; width: 80px;height: 30px;background: #ccc;margin: 2px;line-height: 30px;text-align: center;float: left;} </style> </head> <body> <ul> <li>JAVA</li> <li>PHP</li> <li>HTML</li> <li>MYSQL</li> </ul> </body> </html> <html>
使用浮动前
使用浮动后