Skip to content

Hackerrr23/dice-positioning-project

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CSS Layout mini-project

Dice Positioning

Using the display or position property, create all six sides of a dice. You should only need to edit the 'index.html', and 'index.css', no need to change anything in 'setStyles.css'.

For extra practice, try to create each side of the dice more than one way (use different properties).

Check out some of the more common properties that 'flexbox' uses.
* {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 76.4%
  • CSS 23.6%