css - Unable to override to fix the dimension of the column? -


i trying fix column size ie) col class. below following properties:

.col {     -moz-box-flex: 1;     display: block;     flex: 1 1 0;     padding: 5px;     width: 100%; } 

i tried below,

#id .col {     flex: none !important;     width: 45px !important; } 

this works in browser , portrait resolution of screen. enter image description here

however not fixing width landscape resolution. enter image description here

any suggestion appreciated?


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -