Posts by Jorge Rodrigues • 11 points
2 posts
-
1
votes4
answers8782
viewsA: How to center text vertically
You can try to accomplish this way. .flexbox-container { display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center;…
-
0
votes2
answers260
viewsA: How to make @media print ignore @media max-width
You must do something like this: @media not print { @media (min-width:500px) { /* o teu estilo */ } } This basically performs as (not print) and (min-width: 500px). I hope I’ve helped. :)…