调整所有标签标签的宽度

问题描述 投票:0回答:1

我的内容标签宽度为1300px。我无法理解如何使用标签调整上块,使它们成一行(彼此略有缩进1px),并且宽度为100%(在1300px之内)。我还提供了标签的代码以及图片(如有必要)。非常感谢您的帮助![

.rate_selector {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.rate_selector_content {
  display: flex;
  justify-content: space-between;
  width: 1300px;
  max-width: calc(100% - 100px);
  margin: 50px 0 50px 0;
}

.tabs {
  font-size: 0;
  width: 100%;
}

.tabs>input[type="radio"] {
  display: none;
}

.tabs>div {
  display: none;
  border: 1px solid #e0e0e0;
  background-color: #FAFAFA;
  font-size: 16px;
}

#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2,
#tab-btn-3:checked~#content-3,
#tab-btn-4:checked~#content-4 {
  display: flex;
}

.tabs>label {
  display: inline-block;
  user-select: none;
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  height: 70px;
  top: 1px;
}

.tabs>label:not(:first-of-type) {
  border-left: none;
}

.tabs>input[type="radio"]:checked+label {
  background-color: #FAFAFA;
  border-bottom: 1px solid #FAFAFA;
}
<div class="rate_selector">
                <div class="rate_selector_content">
                    <div class="tabs">
                        <input type="radio" name="tab-btn" id="tab-btn-1" value="" checked>
                        <label for="tab-btn-1">Text1</label>
                        <input type="radio" name="tab-btn" id="tab-btn-2" value="">
                        <label for="tab-btn-2">Text2</label>
                        <input type="radio" name="tab-btn" id="tab-btn-3" value="">
                        <label for="tab-btn-3">Text3</label>
                        <input type="radio" name="tab-btn" id="tab-btn-4" value="">
                        <label for="tab-btn-4">Text4</label>
                    
                        <div id="content-1">
                          Text content 1
                        </div>
                        <div id="content-2">
                          Text content 2
                        </div>
                        <div id="content-3">
                          Text content 3
                        </div>
                        <div id="content-4">
                          Text content 4
                          </div>
                      </div>
                </div>
  </div>

] 1

html css select tabs
1个回答
1
投票

您可以使用flexbox并将其包装起来。

.tabs {
  display: flex;
  flex-wrap: wrap;
}

现在您将所有内容都放在一行中(标签和内容)。因此,您需要通过将内容宽度设置为100%来扩展内容区域。

#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2,
#tab-btn-3:checked~#content-3,
#tab-btn-4:checked~#content-4 {
  width: 100%;
}

因此我们实现了开始时所拥有的。最后要做的是在标签上添加flex-grow以填满所有内容。

.tabs>label {
  flex-grow: 1;
}

工作中codepen

© www.soinside.com 2019 - 2024. All rights reserved.