JSFiddle - React, Tailwind, and code Playground

by MythOfEchelon

HTML

<!DOCTYPE html>
<html>
	<head>
		<style>
			html {
				color: white;
				font: 16px "Segoe UI", "Segoe WPC", Helvetica, Arial, "Arial Unicode MS", Sans-Serif;
			}

			.example {
				float: left;
				text-align: center;
				padding: 15px 30px;
				background-color: red;
			}

			#normal ::selection {
				color: black;
				background-color: white;
			}

			#webkit ::-webkit-selection {
				color: black;
				background-color: white;
			}

			#moz ::-moz-selection {
				color: black;
				background-color: white;
			}
		</style>
	</head>
	
	<body>
		<div id="normal" class="example">
			<span>Normal</span>
		</div>
		<div id="webkit" class="example">
			<span>WebKit</span>
		</div>
		<div id="moz" class="example">
			<span>Moz</span>
		</div>
	</body>
</html>