Answer the question
In order to leave comments, you need to log in
How to change the font size of a fixed width website?
There is a page
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
#wrap {
width: 980px;
}
<meta name="viewport" content="width=980">
/* Small devices (tablets, 768px and up) */
@media (max-width: 768px) {
font-size: 16px;
}
Answer the question
In order to leave comments, you need to log in
/* Small devices (tablets, 768px and up) */
@media (max-width: 768px) {
.class{ font-size: 16px;}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question