你能告诉我一个表/列的长列表上的虚线代码,即
细胞柱
修指甲............. $ 10.00
我在哪里也把它放在代码中,不知道css,是的html
提前致谢
答案 0 :(得分:3)
以下是我刚刚玩过的东西(在IE8和FF3上测试过):
<html>
<head>
<style>
.dotted {
position:relative;
border-bottom: 1px dotted black;
background:white;
height:24px;
width:300px;
}
.item {
position:absolute;
height:26px;
line-height:30px;
text-align:left;
background:white;
}
.value {
position:absolute;
right:0px;
height:26px;
line-height:30px;
background:white;
text-align:right;
}
</style>
</head>
<body>
<div class="dotted">
<span class="item">Manicure</span>
<span class="value">$10.00</span>
</div>
<div class="dotted">
<span class="item">Tanning</span>
<span class="value">$100.00</span>
</div>
</body>
</html>
答案 1 :(得分:0)
我不认为在纯HTML中可以使用点头(这是你正在寻找的点是什么)。你将不得不使用一些CSS。
这是一篇很棒的文章,可以帮助你入门:
http://web-graphics.com/mtarchive/001622.php
现在你知道了你要找的名字,你也可以谷歌一下并环顾四周,但正如我所说,我认为你可能不得不使用CSS。