I am trying to get my css to work in a tablet portrait and when testing it on my tablet, I can't get any of my changes to work. Am I suppose to do a hard reset on the tablet or something?
/*Tablet portrait with a width of 1024px*/
@media screen and (max-width: 1024px) and (orientation: portrait){
label {
width: 100%;
display: block;
position: relative;
}
.nav {
width: 200%;
}
#nav-icon {
font-size: 28px;
line-height: 50px;
padding-left: 1em;
color: #ffffff;
background-color: #f44336;
}
}