css-ui- <ul style=“list-style-type: none“> <!– 去掉前面..–>

  • Post author:
  • Post category:其他


<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title></title>

<style>

ul{


border: 1px solid red;

width: 100%;

height: 100px;

}

li{


width: 23.3%;

float: left;

text-align: center;

color: #666;

line-height:30px;

padding: 20px 0px;

border: 1px solid red; }

</style>

</head>

<body>

<div>

<ul style=”list-style-type: none”>  <!– 去掉前面..–>

<li>12</li>

<li>34</li>

<li>56</li>

<li>34</li>

<li>56</li>

<li>34</li>

<li>56</li>

<li>34</li>

<li>56</li>

</ul>

</div>

</body>

</html>



版权声明:本文为jieweiwujie原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。