finished up to bootstrap
This commit is contained in:
24
lectures/lec2/part4/task1.html
Normal file
24
lectures/lec2/part4/task1.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<div class="container">
|
||||
<div>1</div>
|
||||
<div>2</div>
|
||||
<div>3</div>
|
||||
<div>4</div>
|
||||
<div>5</div>
|
||||
<div>6</div>
|
||||
<div>7</div>
|
||||
<div>8</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: no-wrap;
|
||||
background: LightGreen;
|
||||
}
|
||||
.container div {
|
||||
min-width: 120px;
|
||||
height: 50px;
|
||||
margin: 5px;
|
||||
border: solid thin green;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user