Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <fieldset>
	<legend>What is the question?</legend>
	<input type="radio" id="tobe" name="radiobutton" value="Be" checked>
	<label for="tobe">To Be</label>
	<input type="radio" id="orradio" name="radiobutton" value="Or">
	<label for="orradio">Or</label>
	<input type="radio" id="nottobe" name="radiobutton" value="Not Be">
	<label for="nottobe">Not to Be</label>
</fieldset>
              
            
!

CSS

              
                @supports(-webkit-appearance: none) {
/* 	AKA, only do this if `-webkit-appearance: none` is supported. 
	Which means IE11 and Opera Mini will get the old browser-styled checkbox. 
	Which works just fine. Old browsers can get old looking things. */
 	input[type="radio"] , 
	fieldset input[type="radio"] {
		/*  Remove the default styling.
		    `-webkit-appearance` is not an official CSS property 
			& likely never will be. But it's also in 95% of browsers, 
			non-webkit included, yes, as a `-webkit` property. 
			Firefox, Edge, Chrome, Opera all implemented `-webkit-appearance`.  
			Plus it *will* stick around. Browsers can't remove it. 
			So use it like this...                                 */
		-webkit-appearance: none;
		/* Style the radio button container. */
		width: 1.4rem;
		height: 1.4rem;
		border-radius: 50%;
		border: 1px solid #808080;
		margin: 0.3rem 0 0 0;
		padding: 0;
	}
	input[type="radio"]:checked, 
	fieldset input[type="radio"]:checked {
		/* Prepare for placing the new checkmark. */
		position: relative;
		/* Do a bug fix to keep iOS from adding dark background. */
		background: none;
	}
	input[id="radio"]:checked::after, 
	fieldset input[type="radio"]:checked::after {
		/* Place (position) the new “filled-in” blob. */
		position: absolute;
		top: 0.3rem;
		left: 0.3rem;
		width: 0.7rem;
		height: 0.7rem;
		background: #0c4364;
		border-radius: 50%;
		content: "";
	}
	
	/* Focus styles. */
	fieldset:focus-within  {
		border-color: #0b8663;
	}
	fieldset:focus-within legend {
		color: #0b8663;
	}
 	input[type="radio"]:focus, 
	fieldset input[type="radio"]:focus {
		border: 1px solid teal;
	}

	/* Layout for the Fieldset. Needs work. To be continued... */
	fieldset {
		display: grid;
		grid-template-columns: min-content 1fr;
		margin: 3rem 0;
		border: 1px solid #808080;
		grid-column: 2;
		min-width: 12rem; /* this is a hack. hmmf. */
	}
	legend {
		margin: 0 0 0.5rem -1rem;
		padding: 0.6rem 0.5rem 0.4rem 0.8rem;	
		color: black;
		background: #eee;
		width: fit-content;
	}			
	label {
		display: block;
		padding: 0.6rem 0 0.5rem 0.6rem;
	}
}

/* Add a bit of styling to the page & typography. Totally optional. */
body {
	margin: 2rem;
	font-family: Avenir, Roboto, sans-serif;
}
              
            
!

JS

              
                		
              
            
!
999px

Console