DEV Community

Sekti Wicaksono
Sekti Wicaksono

Posted on

CSS Battle - #1 Simply Square

HTML

<div></div>
Enter fullscreen mode Exit fullscreen mode

CSS

  body {
    background: #5d3a3a;
    margin: 0;
  }
  div {
    width: 50%;
    height: 66.8%;
    background: #b5e0ba;
  }
Enter fullscreen mode Exit fullscreen mode

Top comments (0)