Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS media queries for telephone numbers Re: CSS media queries for telephone numbers

#130160
Pamela
Member

Hi, thanks for you help , this is the code I have in my html:

0400 468 539

/* this is in default stylesheet, styles.css: */

.tel {
text-decoration:none;
color: #074867;
cursor:default;
}

this for the media query:

/* =Media Queries


*/

@media only screen and (max-device-width: 480px) {

.tel{
text-decoration: underline;
color: #074867;
cursor:auto;
}

}

Is the syntax correct for the media query?