20 / 20 (100%), оптимальность кода

Здравствуйте. Прошу прокомментировать код.

html {
    padding: 0;
}

body {
    margin: 0;
    padding: 20px;
}

.scene {
    position: relative;
    width: 260px;
    height: 260px;
    background: none;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

div {
    display: inline-block;
    background: white;
}

/* горизонтальные элементы */
.h {
    width: 50px;
    height: 10px;
     position: absolute;
}

.h1 {
    
    bottom: 80px;
    left: 80px;
}

.h3 {
    width: 40px;
    bottom: 60px;
    left: 30px;
 }
 
 .h2 {
    width: 40px;
    bottom: 40px;
    right: 20px;
   
}


/* вертикальные элементы */
.v {
    width: 10px;
    height: 50px;
    position: absolute;
    bottom: 40px;
}

.v1 {
        left: 20px;
 
}

.v2 {
 
    left: 60px;
   
}

.v3 {
    
    left: 100px;
  
}

.v4 {
    
    right: 110px;

}

.v5 {
  
    right: 70px;
   
}

.v6 {

    right: 50px;
    
}

/* уголки */
.corner-top {
    border: 15px solid white;
    border-top-width: 20px;
    border-bottom-width: 0;
    border-top-color: transparent;
    background: none;
        position: absolute;
    right: 80px;
    bottom: 70px;
}


.corner-bottom {
    border: 15px solid transparent;
    border-top-width: 20px;
    border-bottom-width: 0;
    border-top-color: white;
    background: none;
        position: absolute;
    right: 80px;
    bottom: 50px;
}

/* лого */
.logo {
    width: 64px;
    height: 64px;
    background: url('/assets/course10/logo.png');
     position: relative;
     margin-left: 87px;
     margin-top: 80px;;

}

При позиционировании логотипа не пользовались координатами, почему?

Для разнообразия.

Вот, использовал:

.logo {
    width: 64px;
    height: 64px;
    background: url('/assets/course10/logo.png');
     position: relative;
    top: 80px;
    left: 87px;
}

Разнообразие в данном случае не совсем уместно.

1 лайк