Create Box Model Visibility in CSS

<html>
  <head>
    <title></title>
      <style type="text/css">
        * .box {
          display: static;
          overflow: visible;
          visibility: visible;
          width: 160px;
          height: 150px;
          padding: 30px;
          border-top: 30px solid gray;
          border-bottom: 30px solid black;
          border-left: 30px solid gray;
          border-right: 30px solid black;
          margin-left: 230px;
          margin-top: 80px;
          background-color: #ccc;
        }
      </style>
  </head>
<body>

  <h1>Box Model</h1>

    <div class="box"></div>

</body>
</html>

Comments

Popular posts from this blog

Shutdown Computer With Funny Reason

Hidden Attribute in javascript

Draw animated loading spinner canvas in Javascript