如何将文本放在单选按钮内?放在、如何将、单选、按钮

2023-09-06 19:14:56 作者:奇迹在转角

我正在尝试将一个字母放在单选按钮(使用 Materialize 框架)中,例如此

I am trying to put a letter inside a radio button (with Materialize framework) like the A and B in this image.

串口助手 简洁版 上位机软件零基础教程 C visual studio2017 一

How do I do this?

解决方案

You cannot do that. But instead, you can make something similar using CSS:

label {display: block; padding: 5px; position: relative; padding-left: 20px;}
label input {display: none;}
label span {border: 1px solid #ccc; width: 15px; height: 15px; position: absolute; overflow: hidden; line-height: 1; text-align: center; border-radius: 100%; font-size: 10pt; left: 0; top: 50%; margin-top: -7.5px;}
input:checked + span {background: #ccf; border-color: #ccf;}

<h3>Select One</h3>
<label><input type="radio" name="select" /><span>a</span> Item 1</label>
<label><input type="radio" name="select" /><span>b</span> Item 2</label>

Preview