gpt4 book ai didi

html - 左侧的两个 css 类边框

转载 作者:太空宇宙 更新时间:2023-11-03 23:34:28 25 4
gpt4 key购买 nike

我要上课了

<div class="thread-entryresponse">
<div class="date">


</div>
</div>

然后

<div class="thread-entrymessage">
<div class="date">
</div>
</div>

我的CSS代码是

.thread-entryresponse {
border-left: 2px solid #428bca;
color: #444;
padding: 10px;
}

.thread-entrymessage {
border-right: 2px solid #444;
}

.date {
color: #444;
margin-top: 20px;
padding: 10px;
}

下面我正在尝试做

  1. 如果 .thread-entryresponse.dateborder-left: 2px solid #428bca; 在日期
  2. 如果 .thread-entrymessage.date 那么 border-right: 2px solid #444;在日期

注意日期在thread-entryresponse和thread-entrymessage中

最佳答案

首先,我强烈建议你学习 HTML/CSS 的基础知识

其次,你可以用这个

DEMO

.thread-entryresponse .date {
border-left: 2px solid #428bca;
}
.thread-entrymessage .date {
border-right: 2px solid #444;
}

关于html - 左侧的两个 css 类边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24476073/

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