I have a fairly basic HTML template which is responsive as well. It works mostly as expected except when it goes responsive, I am making the 'td' full width using a class as follows:
@media only screen and (max-width: 480px){
.templateColumnContainer{
display:block !important;
width:100% !important;
}
}
This works as expected when I test in web browsers even in the device mode using devtools but on the actual device it simply won't override the default display property of 'table-cell' even when using !important flag. I have attached a screenshot to show the behaviour. Have I come across a known bug or is there an obvious solution to this which I am missing?