gpt4 book ai didi

html - 如何重复一个字符(m)来填满浏览器窗口

转载 作者:行者123 更新时间:2023-11-28 07:20:37 25 4
gpt4 key购买 nike

我希望在整个浏览器窗口中用单个字符填充浏览器窗口。

jsfiddle 中包含对类似问题最接近的答案:

CSS:

.line{
border-bottom:1px dotted black;
position:relative;
height:16px;
}

.line span{
display:inline-block;
position:relative;
background:white;
bottom:-2px;
height:100%;
padding:0 5px;
}
.line .price{
position:absolute;
right:0;
}​

HTML:

<div class="line">
<span class="title">name</span>
<span class="price">123.23$</span>
</div>
<div class="line">
<span class="title">name</span>
<span class="price">123.23$</span>
</div>​

如何将虚线换成字符 (m)?

最佳答案

要删除虚线,您只需删除 CSS 中的代码

line{
border-bottom:1px dotted black; <--remove this part of the code
position:relative;
height:16px;
}

关于html - 如何重复一个字符(m)来填满浏览器窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32107597/

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