Posts by Micael Souza • 61 points
3 posts
-
3
votes2
answers57
viewsA: Is it possible to change class of many Divs with a single js command?
Try adding a classe in common for all div’s you want to change, since you want to make exchange of classe in all at once, I do not think it recommended to select them by id since they all have this…
-
2
votes2
answers5945
viewsA: Get full monitor width using CSS3
I don’t know if that’s the case, but see if "viewport-percentage lengths" will do. Ex: div { width: 100vw; // 100% viewport width height: 100vh; // 100% viewport height } In case you wanted to read…
-
1
votes2
answers4370
viewsA: How to "get rid" of vertical space between Divs?
Try using a reset in your projects something like this: * { margin: 0; padding: 0; } would solve your problem. If you want to know more about css-resets, read this article:…