gpt4 book ai didi

html - Bootstrap 在一行中为多个单词着色?

转载 作者:行者123 更新时间:2023-11-28 17:26:12 25 4
gpt4 key购买 nike

我目前正在学习 bootstrap(顺便说一句,它太棒了!)我有一个问题。我有一个像这样的“h3”标签...

 <h3 class="pull-right">CALL 555-123-4567</h3>

我想为这个标签设计样式是将“调用”部分设为一种颜色,将电话号码设为另一种颜色。

我知道如何用 css 做到这一点,但是 bootstrap 与此有什么关系吗?我是否需要为与电话号码分开的“调用”一词创建另一个类?

例如。 . .

 <h3 class="pull-right"><h3 class="#">CALL</h3><h3 class="#">555-123-456</h3>

或者它会更像这样的 ID 吗?

 <div id="container"> <!--pull this right with bootstrap? would that even work? would the name need to be 'pull-right' and not container?-->
<h3 class="colorChange"> CALL <h3> <h3 class="newColorChange" 555-123-4567</h3>
</div>

哪个更合适?使用 Bootstrap 框架更改文本颜色的原始问题是我主要关心的问题。

最佳答案

永远不要将 h3 嵌套在 h3 标签中。要分别设置 CALLphone no. 的样式,您只需要这样做:

    <h3 class="pull-right">
<span class="call">CALL</span>
<span class="number">555-123-4567</span>
</h3>

现在可以分别设置CALLNumber 的样式。

关于html - Bootstrap 在一行中为多个单词着色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39864743/

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