css 自定义无线电输入|标签的CSS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 自定义无线电输入|标签的CSS相关的知识,希望对你有一定的参考价值。

  <label class="radio-button">
        <input type="radio" name="radio" />
        <span class="custom-radio"></span>
        Radio 1
    </label>

    <label class="radio-button">
        <input type="radio" name="radio" />
        <span class="custom-radio"></span>
        Radio 2
    </label>

.radio-button {
  cursor: pointer;
  font-weight: normal;
  display:block;

  input[type="radio"] {
    display: none;

    &:checked + .custom-radio::before{
      transform: scale(1);
    }
  }

  .custom-radio {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #000;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    vertical-align: -4px;
    box-sizing:content-box;
    &::before {
      content: "";
      width: 6px;
      height: 6px;
      background: #5591dc;
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      margin-left: -3px;
      margin-top: -3px;
      transform: scale(0);
      transition: all 0.3s ease;
    }
  }
}

以上是关于css 自定义无线电输入|标签的CSS的主要内容,如果未能解决你的问题,请参考以下文章

css 自定义复选框输入|标签的CSS

在 Tailwind CSS 中自定义输入范围

css 选择/自定义下拉箭头上的自定义箭头|标签的CSS

css 用于样式字段标签的自定义CSS

我的 Joomla 模板正在使用 JS 加载我的自定义 CSS。有没有办法将唯一版本标签添加到我的自定义 CSS 中?即:custom.css?20180101

带有自定义标签的 CSS 宽度