• When I add the following to CSS Stylesheet Editor…

    @media screen and (min-width: 48em)
    .test {
    	font-size: 100%;	
    }

    and then save it, the code for the font-size gets stripped out as follows…

    @media screen and (min-width: 48em)
    .test {
    
    }

    If however, I put in CSS code without the media query…

    .test {
    	font-size: 100%;
    }

    and then save it, it stays as it was created…

    .test {
    	font-size: 100%;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Twenty Seventeen CSS Stylesheet Editor stripping code’ is closed to new replies.