I know this is a big vague but I cannot upload all the code because it is too big. Basically, i am trying to make the text smaller for small screens but it wont let me. I tried to change other features as well and some change but some don't.
To sum up, What is the difference between the features? What can be the reason that shadow worked but underlining didn't.
** currently the most important for me is the size feature, if there is a bypass for my problem i will be happy **
this is the css code that i tested:
@media only screen and (max-width: 700px)
{
div.aaa
{
// changed
width: 100%;
text-transform: lowercase;
text-shadow: 3px 2px red;
// didnt change
text-decoration: underline;
font-size: 40px;
}
}