CSS Introduction

CSS Tutorial What is CSS CSS Syntax CSS Selector How to include CSS CSS Comments

CSS Attributes

CSS Background CSS Border CSS Display CSS Float CSS Font CSS Color CSS Hover CSS Important CSS Line-height CSS Margin CSS Opacity CSS Filter CSS Images CSS Overflow CSS Padding CSS Position CSS Vertical align CSS White space CSS Width Word-wrap in CSS Box-shadow in CSS Text-transform in CSS CSS Outline CSS Visibility CSS Counters CSS Clear fix CSS Icons CSS Justify-content Text-decoration in CSS CSS Lists CSS nth selector CSS Sticky CSS Background-clip CSS Checkbox-style CSS Letter-spacing CSS Navigation bar CSS Overlay CSS Root CSS Specificity CSS Text-indent CSS Text-stroke CSS Zoom CSS Order CSS Descendent selector CSS Clip CSS calc() CSS Background-blend-mode CSS radio-button CSS Superscript and subscript CSS Text-effects CSS Text-align CSS Variables CSS Page-break-before CSS Page-break-inside CSS Page-break-after CSS Content property CSS Word-spacing CSS Animation CSS @keyframes rules CSS Pseudo-classes CSS Pseudo-elements CSS Radial-gradient CSS Translate CSS Gradients CSS z-index CSS Loaders CSS Units CSS Transition CSS Masking CSS Arrow CSS Pagination

Questions

What is Bootstrap CSS What is CSS used for How to center a table in CSS What is a CSS File How to center a button in CSS How to change background color in CSS How to change the font in CSS How to change font size in CSS How to resize an image in CSS How to get rid of bullet pioints in CSS Is CSS a programming language How to edit CSS in WordPress How to use google fonts in CSS How to create blinking text using CSS How to Set Space between the Flexbox Is CSS a Programming Language

Difference

Difference between HTML and CSS Grid Vs Flexbox in CSS Difference between CSS Grid and CSS Flexbox

Misc

Create a 3D text effect using HTML and CSS Hover condition for a:before and a:after in CSS Bem CSS Boder Types CSS Features of CSS Font Face CSS Image Overlay CSS B Tag CSS Carousel CSS CSS Arrow CSS Focus Flex Grow in CSS Bem CSS Features of CSS Font Face CSS

CSS Radio Button

Radio Button

A radio button has been defined as an element of HTML. It can support us to take any input from the user. But it is challenging to design a radio button. The pseudo-components make it efficient to create the various radio buttons. These buttons are used when it is required to select some items from multiple items.

These HTML elements are generally applied in almost every website, although without designing them, they appear the same on all the sites. Thus, designing them will create our websites more attractive and different. Styling various radio buttons with the use of CSS will be a creative and exciting task that will give a new appearance to the radio button (default).

To design a radio button (custom), we need to address the CSS.

We need to address the HTML markup to create it.

Designing of any radio button can be precise with the use of some examples. Let’s take some examples regarding the same.

Example:

In the following illustration, we use the ‘~’ sign, which is a sibling combinator. This sign will select every element that is anticipated by any previous selector. Also, we have applied pseudo-class: hover to design any radio button if the user points the cursor on it.

<!DOCTYPE html> 
<html> 
<style> 
.container
{ 
 display: block; 
 position: relative; 
 padding-left: 40px; 
 margin-bottom: 20px; 
 cursor: pointer; 
 font-size: 25px; 
} 
/* Hide the radio button (default) */ 
.container input
{ 
 position: absolute; 
 opacity: 0; 
 cursor: pointer; 
} 
/* radio button (custom) */ 
.check
{ 
 position: absolute; 
 top: 0; 
 left: 0; 
 height: 30px; 
 width: 30px; 
 background-color: lightgray; 
 border-radius: 50%; 
} 
.container:hover input ~ .check
{ 
 background-color: gray; 
} 
.container input:checked ~ .check
{ 
 background-color: blue; 
} 
.check:after
{ 
 content: ""; 
 position: absolute; 
 display: none; 
} 
.container input:checked ~ .check:after
{ 
 display: block; 
} 
.container .check:after
{ 
 top: 8px; 
 left: 8px; 
 width: 15px; 
 height: 15px; 
 border-radius: 50%; 
 background: white; 
} 
</style> 
<body> 
<h1> Example of Radio Buttons (Custom)</h1> 
<h2> Choose your category </h2> 
<label class="container">GEN 
  <input type="radio" name="radio" checked> 
  <span class="check"></span> 
</label> 
<label class="container">OBC 
  <input type="radio" name="radio"> 
  <span class="check"></span> 
</label> 
<label class="container">SC 
  <input type="radio" name="radio"> 
  <span class="check"></span> 
</label> 
<label class="container">ST 
  <input type="radio" name="radio"> 
  <span class="check"></span> 
</label> 
</body> 
</html> 

Output:

CSS Radio Button

To explain it more efficiently, we will specify another example of designing any radio button. Creating any radio button with the use of CSS gives a professional appearance to any website.

Example:

<!DOCTYPE html>  
<html>  
<head>  
<style>  
.container
{ 
 float: left; 
 margin: 10px; 
} 
.right
{ 
 float: left; 
 margin: 10px; 
 color: blue; 
 font-size: 20px; 
 font-weight:bold; 
} 
.radio
{ 
 width: 20px; 
 position: relative; 
} 
.radio label
{ 
 width: 20px; 
 height: 20px; 
 cursor: pointer; 
 position: absolute; 
 top: 0; 
 left: 0; 
 background: white; 
 border-radius: 50px; 
 box-shadow: inset 0px 1px 1px white, 3px 3px 9px rgba(0,0,0,0.5); 
 border: 1px solid black; 
} 
.radio label:after
{ 
 content: ''; 
 position: absolute; 
 top: 4px; 
 left: 4px; 
 border: 6px solid blue; 
 border-radius: 50px; 
 opacity: 0; 
} 
.radio label:hover::after
{ 
 opacity: 0.3; 
} 
.radio input[type=radio]
{ 
 visibility: hidden; 
} 
.radio input[type=radio]:checked + label:after
{ 
 opacity: 1; 
}   
</style>  
</head>  
<body>  
<h1> Example of Radio Buttons of CSS </h1>  
<h2> Click any following radio buttons to look the effect </h2> 
<div class="container"> 
<div class="radio"> 
<input type="radio" value="Male" name='gender' id='male' /> 
<label for="male"></label> 
</div> 
</div> 
<div class="right">Male</div> 
<div class="container"> 
<div class="radio"> 
<input type="radio" value="Female" name='gender' id='female' /> 
<label for="female"></label> 
</div> 
</div> 
<div class="right">Female</div> 
</body>  
</html> 

Output:

CSS Radio Button