Skip to content

Latest commit

 

History

History

01-eox-layout

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

01: Basic layout using eox-layout

Let's get started! In this section you're going to bootstrap a simple layout, based on a 12x12 grid. We won't add any content yet, and will adapt this layout in the following sections.

Import package

Import the @eox/layout package into main.js:

import "https://unpkg.com/@eox/layout";

Add HTML

In index.html, use the eox-layout container element to hold the individual items:

<eox-layout></eox-layout>

Add individual eox-layout-item elements with x, y, w and h attributes inside the eox-layout slot:

<eox-layout-item x="0" y="0" w="1" h="1">One</eox-layout-item>
<eox-layout-item x="1" y="1" w="1" h="1">Two</eox-layout-item>

Styling

Add some basic styling to style.css. Make the layout fill the entire page height:

eox-layout {
  height: 100%;
}

Give the layout items some basic styling:

eox-layout-item {
  border: 1px solid darkgrey;
  border-radius: 4px;
}

Result

Your page should look something like this:

Feel free to compare with the solution folder!

Next, try out section 02.