使用浮动左无序列表在一行上对齐div
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用浮动左无序列表在一行上对齐div相关的知识,希望对你有一定的参考价值。
The css style's in the tags are important for this snippet to work.
<!DOCTYPE html> <html lang="en_US"> <head> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="reset.css" media="all"> <style type="text/css"> ul li{ float:left; } ul li div{ margin-right:15px; } ul{ list-style:none; } .one, .two{ width:200px; height:200px; overflow:hidden; background-color:red; -webkit-border-radius:8px; } </style> </head> <body> <div class="container"> <ul> <li> </li> <li> </li> </ul> </div> </body> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script> </html>
以上是关于使用浮动左无序列表在一行上对齐div的主要内容,如果未能解决你的问题,请参考以下文章
将左浮动 div 中的图像与右浮动 div 上的文本垂直对齐
ul标签中嵌套div,div会换行显示,如何让ul和div水平显示在同一行