如何使用CSS更改单选按钮的大小?


Answers:


50

是的,您应该能够像设置任何元素一样设置其高度和宽度。但是,某些浏览器并没有真正考虑这些属性。

该演示概述了各种浏览器中可能出现的内容以及其显示方式:https//www.456bereastreet.com/lab/styling-form-controls-revisited/radio-button/

如您所见,设置单选按钮的样式并不容易:-D

一种解决方法是使用JavaScript和CSS用自定义图像替换单选按钮和其他表单元素:


5
设置宽度和高度,并使用em metric:width:1.2em; 高度:1.2em;
伊曼


37

这个CSS似乎可以解决问题:

input[type=radio] {
    border: 0px;
    width: 100%;
    height: 2em;
}

将边框设置为0似乎允许用户更改按钮的大小,并让浏览器以该大小呈现它,例如。上面的高度:2em将以两倍线高渲染按钮。这也适用于复选框(input[type=checkbox])。有些浏览器的渲染效果要好于其他浏览器。

从Windows框中可以在IE8 +,FF21 +,Chrome29 +中使用。


在Chromium中为我制作了小巧的东西。
Pocketsand,

30

古老的问题,但是现在有一个简单的解决方案,可以与大多数浏览器兼容CSS3。我在IE,Firefox和Chrome中进行了测试,并且可以正常工作。

input[type="radio"] {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
    transform: scale(1.5);
}

1.5根据您的需要更改值,在这种情况下,以50%的大小递增。如果比率很高,则可能会使单选按钮模糊。下图显示比率为1.5。

在此处输入图片说明

在此处输入图片说明


4
该解决方案虽然可行,但会使单选按钮变得模糊。不要使用这个。
Vadim

2
这将取决于规模。比率为1.5可以。
若奥·皮门特尔·费雷拉

您无法控制比例大小。用户可能会决定放大(在台式机或移动设备上),在这种情况下,单选按钮看起来很糟糕。
Vadim

1
@Vadim我现在在Chrome中测试,比例为1.5,缩放比例为300%,完全可以。
若奥·皮门特尔·费雷拉

3
在我的分辨率相对较低的监视器(1920 x 1080)上,即使在100%缩放级别下,单选按钮也相当模糊。在视网膜显示器上,它将更加模糊。这些天,甚至某些手机的分辨率都比我的显示器更高。就像我之前说的,您无法控制图像的缩放比例。在某些屏幕上看起来还可以。您可能看起来还可以,但是解决方案并不通用。
瓦迪姆(Vadim)

5

您可以使用CSS样式控制单选按钮的大小:

style =“ height:35px; width:35px;”

这直接控制单选按钮的大小。

<input type="radio" name="radio" value="value" style="height:35px; width:35px; vertical-align: middle;">

1
为防止其被删除,请编辑并解释其工作原理。
Rohit Gupta 2015年

@Rohit Gupta您可以更改样式=“ height:35px; width:35px;” 控制单选按钮的大小。
塔里克

我尝试过这一点,但感到惊讶的是,它在IE,Edge和Chrome上都能正常工作。Firefox,不是很多。
zippy72

4

不直接。实际上,表单元素通常是有问题的,或者仅使用CSS就无法进行样式设置。最好的方法是:

  1. 使用javascript隐藏单选按钮。
  2. 使用javascript添加/显示可以按自己的喜好设置样式的HTML,例如
  3. 为选定状态定义css规则,该规则是通过向您的跨度添加“选定”类触发的。
  4. 最后,编写JavaScript以使单选按钮的状态对跨度的单击做出反应,反之亦然,以使跨度对单选按钮的状态变化做出响应(适用于用户使用键盘访问表单时的情况)。第二部分可能很难在所有浏览器上使用。我使用类似以下的内容(它也使用jQuery。我避免通过样式设置并将“ selected”类直接应用于输入标签来避免添加额外的跨度)。

javascript

var labels = $("ul.radioButtons).delegate("input", "keyup", function () { //keyboard use
        if (this.checked) {
            select($(this).parent());
        }
    }).find("label").bind("click", function (event) { //mouse use
        select($(this));
    });

function select(el) {
    labels.removeClass("selected");
    el.addClass("selected");
}

html

<ul class="radioButtons">
    <li>
        <label for="employee1">
            employee1
            <input type="radio" id="employee1" name="employee" />
        </label>
    </li>
    <li>
        <label for="employee2">
            employee1
            <input type="radio" id="employee2" name="employee" />
        </label>
    </li>
</ul>

3

调整默认窗口小部件的大小并非在所有浏览器中都有效,但是您可以使用JavaScript制作自定义单选按钮。一种方法是创建隐藏的单选按钮,然后在页面上放置您自己的图像。单击这些图像会更改图像(将单击的图像替换为处于选中状态的带有单选按钮的图像,并将其他图像替换成处于未选中状态的单选按钮)并选择新的单选按钮。

无论如何,有关于此主题的文档。例如,阅读以下内容:使用CSS和JavaScript设置复选框和单选按钮的样式


3

这是一种方法。默认情况下,单选按钮的大小约为标签的两倍。
(请参阅答案末尾的CSS和HTML代码)


Safari: 10.0.3

在此处输入图片说明


Chrome: 56.0.2924.87

在此处输入图片说明


Firefox: 50.1.0

在此处输入图片说明


Internet Explorer: 9 (模糊性不是IE的错,在netrenderer.com上进行了托管测试)

在此处输入图片说明


CSS:

.sortOptions > label {
    font-size:          8px;
}

.sortOptions > input[type=radio] {
    width:              10px;
    height:             10px;
}

HTML:

<div class="rightColumn">Answers
    <span class="sortOptions">
        <input type="radio" name="answerSortList" value="credate"/>
        <label for="credate">Creation</label>

        <input type="radio" name="answerSortList" value="lastact"/>
        <label for="lastact">Activity</label>

        <input type="radio" name="answerSortList" value="score"/>
        <label for="score">Score</label>

        <input type="radio" name="answerSortList" value="upvotes"/>
        <label for="upvotes">Up votes</label>

        <input type="radio" name="answerSortList" value="downvotes"/>
        <label for="downvotes">Down Votes</label>

        <input type="radio" name="answerSortList" value="accepted"/>
        <label for="downvotes">Accepted</label>

    </span>
</div>                

3

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  <style>
input[type="radio"] {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
    transform: scale(1.5);
}
  </style>
</head>
<body>

<div class="container">
  <h2>Form control: inline radio buttons</h2>
  <p>The form below contains three inline radio buttons:</p>
  <form>
    <label class="radio-inline">
      <input type="radio" name="optradio">Option 1
    </label>
    <label class="radio-inline">
      <input type="radio" name="optradio">Option 2
    </label>
    <label class="radio-inline">
      <input type="radio" name="optradio">Option 3
    </label>
  </form>
</div>

</body>
</html>


1
感谢您提供答案,一些解释将是不错的:)
Tha'er M. Al-Ajlouni

1

您直接不能这样做。[据我所知]。

您应该images用来取代单选按钮。在大多数情况下,可以使它们以与单选按钮相同的方式起作用,并且可以使其具有任意大小。


这个答案非常不明智-当然您可以直接做到。而且不,您不应该在一开始就尝试使用图像-这会在您的页面上造成不必要的膨胀
-Jasdeep Khalsa,


0

这在所有浏览器中对我来说都很好:

(为简单起见,使用内联样式...)

<label style="font-size:16px;">
    <input style="height:1em; width:1em;" type="radio">
    <span>Button One</span>
</label>

单选按钮和文本的大小都会随标签的字体大小而变化。


-2

试试这个代码...这可能是您正在寻找的ans

body, html{
  height: 100%;
  background: #222222;
}

.container{
  display: block;
  position: relative;
  margin: 40px auto;
  height: auto;
  width: 500px;
  padding: 20px;
}

h2 {
	color: #AAAAAA;
}

.container ul{
  list-style: none;
  margin: 0;
  padding: 0;
	overflow: auto;
}

ul li{
  color: #AAAAAA;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 100px;
	border-bottom: 1px solid #333;
}

ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

ul li label{
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.35em;
  padding: 25px 25px 25px 80px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

ul li:hover label{
	color: #FFFFFF;
}

ul li .check{
  display: block;
  position: absolute;
  border: 5px solid #AAAAAA;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 30px;
  left: 20px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

ul li:hover .check {
  border: 5px solid #FFFFFF;
}

ul li .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 5px;
	left: 5px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 5px solid #0DFF92;
}

input[type=radio]:checked ~ .check::before{
  background: #0DFF92;
}
<ul>
  <li>
    <input type="radio" id="f-option" name="selector">
    <label for="f-option">Male</label>
    
    <div class="check"></div>
  </li>
  
  <li>
    <input type="radio" id="s-option" name="selector">
    <label for="s-option">Female</label>
    
    <div class="check"><div class="inside"></div></div>
  </li>
  
  <li>
    <input type="radio" id="t-option" name="selector">
    <label for="t-option">Transgender</label>
    
    <div class="check"><div class="inside"></div></div>
  </li>
</ul>


2
尽管此代码可以回答问题,但提供有关如何和/或为什么解决问题的其他上下文将提高​​答案的长期价值。请阅读此操作指南以提供优质的答案。
thewaywere是

谢谢您的评论和指导。我是堆栈溢出的新手,这是我自己在Google的帮助下找到的,尽管它可以节省很多时间。所以我在这里发布...
Mausumi

@Mausumi是的,但是有关工作方式原因的一些附加说明将使其成为更好的堆栈溢出答案:-)
starbeamrainbowlabs

-3
<html>
    <head>
    </head>
    <body>

<style>
.redradio {border:5px black solid;border-radius:25px;width:25px;height:25px;background:red;float:left;}
.greenradio {border:5px black solid;border-radius:25px;width:29px;height:29px;background:green;float:left;}
.radiobuttons{float:left;clear:both;margin-bottom:10px;}
</style>
<script type="text/javascript">
<!--
function switchON(groupelement,groupvalue,buttonelement,buttonvalue) {
    var groupelements = document.getElementById(groupelement);
    var buttons = groupelements.getElementsByTagName("button");
    for (i=0;i<buttons.length;i++) {
        if (buttons[i].id.indexOf("_on") != -1) {
            buttons[i].style.display="none";
        } else {
            buttons[i].style.display="block";
        }
    }
    var buttonON = buttonelement + "_button_on";
    var buttonOFF = buttonelement + "_button_off";
    document.getElementById(buttonON).style.display="block";
    document.getElementById(buttonOFF).style.display="none";
    document.getElementById(groupvalue).value=buttonvalue;
}
// -->
</script>

<form>
    <h1>farbige Radiobutton</h1>
    <div id="button_group">
        <input type="hidden" name="button_value" id="button_value" value=""/>
        <span class="radiobuttons">
            <button type="button" value="OFF1" name="button1_button_off" id="button1_button_off" onclick="switchON('button_group','button_value','button1',this.value)" class="redradio"></button>
            <button type="button" value="ON1" name="button1_button_on" id="button1_button_on" style="display:none;" class="greenradio"></button>
            <label for="button1_button_on">&nbsp;&nbsp;Ich will eins</label>
        </span><br/>
        <span class="radiobuttons">
            <button type="button" value="OFF2" name="button2_button_off" id="button2_button_off" onclick="switchON('button_group','button_value','button2',this.value)" class="redradio"></button>
            <button type="button" value="ON2" name="button2_button_on" id="button2_button_on" style="display:none;" class="greenradio"></button>
            <label for="button2_button_on">&nbsp;&nbsp;Ich will zwei</label>
        </span><br/>
        <span class="radiobuttons">
            <button type="button" value="OFF3" name="button3_button_off" id="button3_button_off" onclick="switchON('button_group','button_value','button3',this.value)" class="redradio"></button>
            <button type="button" value="ON3" name="button3_button_on" id="button3_button_on" style="display:none;" class="greenradio"></button>
            <label for="button3_button_on">&nbsp;&nbsp;Ich will drei</label>
        </span><br/>
        <span class="radiobuttons">
            <button type="button" value="OFF4" name="button4_button_off" id="button4_button_off" onclick="switchON('button_group','button_value','button4',this.value)" class="redradio"></button>
            <button type="button" value="ON4" name="button4_button_on" id="button4_button_on" style="display:none;" class="greenradio"></button>
            <label for="button4_button_on">&nbsp;&nbsp;Ich will vier</label>
        </span>
    </div>
</form>

    </body>
</html>

1
对此进行评论或说明将很有用。
James A Mohler 2013年

2
并且在源头开始时就没有结构性错误将很有用。
李斯特先生,2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.