gpt4 book ai didi

html - 在内联元素中的下一行显示文本

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

你能告诉我如何将日期分到下一行吗?我尝试了很多方法。但运气不好。

我试过了。但是没有效果。

.not:after {
content: '\A';
white-space: pre;
}

.html

       <p class="not">{{item.domain}}
<em>{{item.date | date:'yyyy-MM-dd'}}</em>
<span>
${{item.price}}
</span>
</p>

.scss

.not {
line-height: 48px;
padding: 5px 10px 5px 15px;
height: 55px;
background: white;
border-radius: 5px;
border-bottom: 1px solid #56cde0;
font-weight: bold;
width: 90%;
}

.not span {
float: right;
color: #9bb0bf;
font-weight: normal;
font-size: 16px;
}

用户界面

enter image description here

最佳答案

你差不多好了,只需将 \A 技巧应用于 em 伪元素

.not em:before {
content: '\A';
white-space: pre;
}

.not {
line-height: 18px; /*Updated this*/
padding: 5px 10px 5px 15px;
height: 55px;
background: white;
border-radius: 5px;
border-bottom: 1px solid #56cde0;
font-weight: bold;
width: 90%;
}

.not span {
margin-top:-15px; /*If you want to keep the price on the top*/
float: right;
color: #9bb0bf;
font-weight: normal;
font-size: 16px;
}
<p class="not">domain.com
<em>1990-10-10</em>
<span>
$8000
</span>
</p>

关于html - 在内联元素中的下一行显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52834468/

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