CodeLab
Show Output
 
xxxxxxxxxx
24
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1">
6
<title>Bootstrap Custom Radio Buttons Inline</title>
7
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
8
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
9
</head>
10
<body>
11
<div class="m-4">
12
    <form>
13
        <div class="form-check form-check-inline">
14
            <input type="radio" class="form-check-input" name="customRadio" id="customRadio1">
15
            <label class="form-check-label" for="customRadio1">Custom radio</label>
16
        </div>
17
        <div class="form-check form-check-inline ms-4">
18
            <input type="radio" class="form-check-input" name="customRadio" id="customRadio2" checked>
19
            <label class="form-check-label" for="customRadio2">Another custom radio</label>
20
        </div>
21
    </form>
22
</div>
23
</body>
24
</html>
 

在微博、微信、公众号、小程序分享此示例。 如果您觉得有帮助,请给我们一个赞。