@abdallahzeiadaSubmitted over 1 year ago
Simon_Muchemi
@SymonMuchemiAll comments
- @SymonMuchemiPosted over 1 year ago
I think you should work on your sizing and avoid avoid using
body
when styling an element in your HTML. For example, if you would like to style a container element, just use the following code as an example:<div class='container'> some code </div>
.container{ // add style } doing this will make your code more readable and easier to debug. I hope you find this helpful.
Marked as helpful2