I am trying to get three sections (each 1/3 length) on my page using skeleton.css. The website for the framework is skeleton. This is my code:
<!DOCTYPE html>
<html>
<head>
<style type="text/css" href="css/normalize.css" rel="stylesheet"></style>
<style type="text/css" href="css/skeleton.css" rel="stylesheet"></style>
</head>
<body>
<div class="container">
<div class="row">
<div class="three columns">
1
</div>
</div>
<div class="row">
<div class="three columns">
2
</div>
</div>
<div class="row">
<div class="three columns">
3
</div>
</div>
</div>
</body>
</html>
Being that you want your columns in 3rds, use the
one-thirdclass instead and fix the second class to where it's justcolumnvs.columns. You should also remove the two additionalrowcontainers and put them all in one: