An experiment in cleaning up CSS by just avoiding dis-features and focusing on flexbox and CSS grids.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
fsckcss/public/test.html

25 lines
390 B

<html>
<head>
<title>Test of Cascade</title>
<link rel="stylesheet" href="/test.css">
<style>
button {
background-color: green;
}
.attempt {
background-color: red;
}
</style>
</head>
<body>
<h1>HI!</h1>
<button>Sky Blue</button>
<button id="again" class="attempt main">Broken Button</button>
</body>
</html>