1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 02:36:11 +02:00
Files
csslayout/contents/radio-button-group.md
2022-09-21 14:31:37 +07:00

1.4 KiB

layout, title, description, keywords
layout title description keywords
layouts/post.njk Radio button group Create a radio button group with CSS flexbox css flexbox, css radio button

HTML

<div class="radio-button-group">
    <!-- Each radio item -->
    <label class="radio-button-group__label">
        <!-- The radio input -->
        <input type="radio" class="radio-button-group__input" />

        <!-- The text -->
        ...
    </label>

    <!-- Selected item -->
    <label class="radio-button-group__label radio-button-group__label--selected">
        ...
    </label>

    <!-- Repeat other items -->
    ...
</div>

CSS

.radio-button-group {
    display: flex;

    /* Border */
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    height: 2rem;
}

.radio-button-group__label {
    /* Center the content */
    align-items: center;
    display: inline-flex;

    border-right: 1px solid #d1d5db;
    padding: 0.5rem;

    /* For not selected radio */
    background-color: transparent;
    color: #ccc;
}

.radio-button-group__label:last-child {
    /* Remove the right border from the last label */
    border-right-color: transparent;
}

.radio-button-group__label--selected {
    /* For selected radio */
    background-color: #3b82f6;
    color: #fff;

    margin-top: -1px;
    margin-bottom: -1px;
}

.radio-button-group__input {
    /* Hide it */
    display: none;
}

{% demo %}{% include "covers/radio-button-group.njk" %}{% enddemo %}