25.04.2025

DIV первое занятие

<html>
<head>
<title>Название окна</title>

<style>

p {
  background-color: green;
  color: white;
}

.full {
  display: block;
}

.marat {
  display: inline;
}

.secret {
  display: none;
}

.box {
    border-bottom: solid 10px red;
    border-right: solid 10px green;
    border-top: solid 10px red;
    border-left: solid 10px green;
    width: 600px;
    height: 400px;
    padding: 10px;
    margin-top: 100px;
    margin-left: 50;

}

</style>

</head>

<body>

    <p class="full">У этого элемента display: block</p>

    <p class="marat">У этого элемента display: inline</p>
    <p class="marat">И у этого элемента display: inline</p>
    <p class="marat">У этого тоже</p>
    
    <p class="secret">У этого элемента display: none</p>

    <div class="box">Это первый блок</div> 
    

</body>

</html>

https://ru.hexlet.io/courses/html/lessons/divs/theory_unit

https://developer.mozilla.org/en-US/docs/Web/CSS/border

Добавить комментарий