简体   繁体   中英

Zurb Foundation, Media Queries

I am new to web development, i am trying using foundations media query. However the following code that I have typed inside a style.css file does not seem to work.

What have I done wrong, should it be included in the style.css file.

@media only screen and (min-width: 40.063em) { 
    font-size:11ems;
    background:color:red;
    border-left:1px solid green;
}

First thing I can see is you don't seem to be targeting anything inside your media query block. eg .class{property:value;}

Also, your background color property should be background-color:red; and I think it should be em instead of ems for font-size

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM