Media queries

Media queries help you gain finer control over media-specific styles by combining media types with media features, such as the width of a device. For example, the following code helps you define a style attribute for devices with a minimum screen width of 980 px:

@media screen and (min-width:980px)
{ p { color: blue; } }

If your style sheet includes style definitions that use media queries, the minimum and maximum width values are reflected in the output generated from RoboHelp.


September 30, 2016

Legal Notices | Online Privacy Policy