Download pdf - CSS Borders

Transcript
  • Borders: borders.html !!

    Learning CSS

    div {

    width:100px;

    height:100px;

    float:left;

    margin:20px;

    }

    .red {

    background-color:red;

    border:2px yellow ridge;

    }

  • .blue {

    background-color:blue;

    border-style: ridge solid dotted dashed;

    border-width:10px 5px 3px 1px;

    border-color:green yellow blue black;

    }

    .green {

    background-color:green;

    border-radius:50px;

    }


Recommended