gpt4 book ai didi

html - 列表中的点

转载 作者:太空宇宙 更新时间:2023-11-04 00:33:59 25 4
gpt4 key购买 nike

你能告诉我表格/列的长列表中虚线的代码吗,即

单元格列
美甲................................$10.00

我也把它放在代码的什么地方,不知道css,是html

提前致谢

最佳答案

这是我刚刚玩过的东西(在 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>

关于html - 列表中的点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1151439/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com