我正在制作一些单选按钮。这几乎是我想要的。



input[type=radio] {
  position: absolute;
  visibility: hidden;
  display: none;
}

label {
  flex: 1 0 auto;
  background-color: white;
  text-align: center;
  color: dimgray;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  padding: 5px;
  width: 60px;
  transition: background 0.2s, color 0.2s;
}

input[type=radio]:checked + label{
  color: White;
  background: dimgrey;

  &:hover {
    color: White;
    background: dimgrey;
  }
}

input[type=radio] + label:hover {
  color: white;
  background-color: lightgrey;
}

label + input[type=radio] + label {
  border-left: 0.5px solid lightgrey;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  max-width: max-content;
  align-items: stretch;
  border: 0.5px solid dimgrey;
}

<form>
  <div class="radio-group flexbox">
    <input type="radio" id="alle" value="alle" name="selector" checked><label for="alle">Alle</label
    ><input type="radio" id="aktiv" value="aktiv" name="selector" ><label for="aktiv">Aktive</label
    ><input type="radio" id="inaktiv" value="inaktiv" name="selector"><label for="inaktiv">Inaktive</label>
  </div>
</form>





现在包装后的外观:
html - 如何使用flexbox使第一项包裹在其他项之上?-LMLPHP

包装时我希望它看起来如何:
html - 如何使用flexbox使第一项包裹在其他项之上?-LMLPHP

我怎样才能做到这一点?我尝试调整flex-wrap,方向,流程等。无法按照我想要的方式工作。

编辑:我希望它看起来像在默认情况下在代码段中一样(标签水平排列)。我只希望它在窗口缩小时用第一个标签包裹自己的行,并在下面包裹另外两个标签。

最佳答案

请检查以下代码。谢谢



input[type=radio] {
  position: absolute;
  visibility: hidden;
  display: none;
}

label {
  flex: 1 0 auto;
  background-color: white;
  text-align: center;
  color: dimgray;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  padding: 5px;
  width: 60px;
  transition: background 0.2s, color 0.2s;
}

input[type=radio]:checked + label{
  color: White;
  background: dimgrey;

  &:hover {
    color: White;
    background: dimgrey;
  }
}

input[type=radio] + label:hover {
  color: white;
  background-color: lightgrey;
}

label + input[type=radio] + label {
  border-left: 0.5px solid lightgrey;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  max-width: max-content;
  align-items: stretch;
  border: 0.5px solid dimgrey;
}

.radio-group.flexbox > label:nth-child(2) {
  width: calc( 100% - 12px ) !IMPORTANT;
}

<form>
  <div class="radio-group flexbox">
    <input type="radio" id="alle" value="alle" name="selector" checked><label for="alle">Alle</label
    ><input type="radio" id="aktiv" value="aktiv" name="selector" ><label for="aktiv">Aktive</label
    ><input type="radio" id="inaktiv" value="inaktiv" name="selector"><label for="inaktiv">Inaktive</label>
  </div>
</form>

关于html - 如何使用flexbox使第一项包裹在其他项之上?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49410477/

10-11 15:39