Skip to content

CSS resize

garevna edited this page Mar 26, 2019 · 1 revision

☕ resize

<!doctype html>
<html>
    <head>
      <meta charset="utf-8">
      <title>CSS: resize</title>
      <style> 
        div {
            border: 1px solid gray;
            padding: 20px;
            min-width: 50px;
            min-height:50px;
        }
        .first  { width:200px; height:100px; }
        .second { width:100px; height:50px; }
        .third  { width:150px; height:80px; }
        .resizible {
            resize: both;
            overflow: auto;
            float:left;
        }
      </style>
    </head>

    <body>
      <div class="first resizible"></div>
      <div class="second resizible"></div>
      <div class="third resizible"></div>
    </body>
</html>

© Irina H.Fylyppova 2019



Занятие 1


Занятие 2


Занятие 3


Занятие 4


Занятие 5


Занятие 6


Занятие 7


Занятие 8


Дополнительно

Clone this wiki locally