Posts by Adriano Interaminense • 56 points
4 posts
-
4
votes2
answers701
viewsA: How to do this effect of Hover?
.menu { list-style: none; margin: 0; padding: 0; display: flex; background-color: #f0f0f0; height: 36px; …
-
0
votes5
answers666
viewsA: Upper DIV occupying entire screen
Would this be the case? html, body { width: 100%; height: 100%; margin: 0; } .tudo { width: 100%; height: 100%; } .superior { width: 100%; height: 100vh; background: red; } .inferior { width: 100%;…
-
0
votes2
answers642
viewsA: Automatically fit DIV with CSS
You will need a JS force. You can use the library http://masonry.desandro.com/, I recommend this library to you because it is the most used and will guarantee you a proper functioning in your…
-
0
votes2
answers1791
viewsA: HTML and CSS horizontal menu
*{ margin: 0; padding: 0; font-family: Arial, Sans-Serif; } body{ background-color: #ddd; } header{ width: 100%; height: 50px; background-color: #000; } #menu-principal-container { margin: 0px 50px;…