match_media method

match_media

Returns a new MediaQueryList object that can then be used to determine if the document matches the media query string, as well as to monitor the document to detect when it matches (or stops matching) that media query. See CSSOM View Module specification:

Returns

MediaQueryList object

def match_media(self, query):
    ...
ParameterTypeDescription
querystrThe string containing a media query;
see for details.

See Also