gpt4 book ai didi

html - 溢出 Bootstrap 进度条的文本

转载 作者:太空狗 更新时间:2023-10-29 16:45:39 28 4
gpt4 key购买 nike

这是我的 HTML:

<div class="progress">
<div class="progress-bar progress-bar-warning progress-bar-striped first-bar" style="width:10%;">I want this text to overflow into the div to the right</div>
<div class="progress-bar progress-bar-success second-bar" style="width:90%;">I want this text to overflow into the div to the left</div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-warning progress-bar-striped first-bar" style="width:90%;">I want this text to overflow into the div to the right</div>
<div class="progress-bar progress-bar-success second-bar" style="width:10%;">I want this text to overflow into the div to the left</div>
</div>

这是我的 CSS:

@import url('//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css');
.first-bar {
white-space: nowrap;
position: relative;
text-align: left;
}
.second-bar {
white-space: nowrap;
text-align: right;
direction: rtl;
}

我想溢出每个 progress 类 div 中所有 div 元素的文本。 You can see in my Fiddle here我正在尝试做的是我的 CSS 用于将左侧 div 的文本溢出到右侧 div,而不是相反(右侧 div 的文本到左侧 div)。我怎样才能让它以相反的方式工作?我尝试在 second-bar 的 CSS 上添加 position: relative; 但这对我不起作用,因为它打破了第一个场景。

最佳答案

position: relative; 添加到宽度为 10% 的第二个栏的样式,允许文本保持在第一个进度栏上方。 JS Fiddle Here.我无法将其添加到实际的 second-bar CSS 类中,因为第一个栏不会溢出到第二个栏中。

关于html - 溢出 Bootstrap 进度条的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32382746/

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