php挂念者
2017-05-03 10:10
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>边框</title>
<style type="text/css">
li{
display:inline;
border-bottom:1px dotted #ccc;
margin-bottom:50px;
}
</style>
</head>
<body>
<ul>
<li>别让不会说话害了你</li>
<li>二十七八岁就应该有的见识</li>
<li>别让不好意思害了你</li>
</ul>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>边框</title>
<style type="text/css">
li{
border-bottom:1px dotted #ccc;
}
div {
width: 200px;
border: 1px solid green;
padding: 20px;
margin-top: 100px;
}
</style>
</head>
<body>
<div>
<ul>
<li>别让不会说话害了你</li>
<li>二十七八岁就应该有的见识</li>
<li>别让不好意思害了你</li>
</ul>
</div>
</body>
</html>
好好回头看看内联元素的特点吧
你是不是要实现这样的效果?
你全部代码写出来我看一下
初识HTML(5)+CSS(3)-升级版
1225293 学习 · 18230 问题
相似问题