emarkees / Portfolio

MIT License
1 stars 0 forks source link

Morning session review #6

Open LarryIVC opened 1 year ago

LarryIVC commented 1 year ago

Very good work. Why not consider that you could create a class in order to simplify parts of your code? When we have properties that repeat on elements that look the same, we can apply the same class to several and thus write less code. image I suggest: styles.css:

.txt-input {
    border-radius: 8px;
    border: 1px #cfd8dc solid;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 15px 35px;
}

#textarea {
  width: auto;
  margin-bottom: 15px;
  color: #b3bac5;
}

index.html: <textarea id="textarea" class="txt-input" cols="30" rows="10" ... Happy coding 🥳