I have a situation and I decide to use media queries
.
The html
code:
...
<span class="logotext-n">n</span>
.
.
<span class="logotext-u">u</span>
...
Css
implementation:
...
@media screen and (-webkit-min-device-pixel-ratio:0) {
.logotext-n {
color: #f1ecd6;
font-family: "arial black", sans-serif;
font-weight: 900;
font-size: 210px;
text-transform: lowercase;
letter-spacing: -18px;
}
}
.
.
@media screen and (-webkit-min-device-pixel-ratio:0) {
.logotext-u {
color: #f1ecd6;
font-family: "arial black", sans-serif;
font-weight: 900;
font-size: 210px;
text-transform: lowercase;
letter-spacing: 0;
}
}
...
At this point I was wondering, is there any possibility to join these css
properties using a single @media screen
? Thanks
yes, just put it together