HTML <style> with media monochrome
You are Here:
HTML <style> with media monochrome
The monochrome
value of the media attribute specifies the bits per pixel in a monochrome frame buffer.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<head>
<style media="screen and monochrome">
#mono{
color:green;
}
#no-mono{
color:#fff;
}
</style>
<style media="screen and (monochrome: 0)">
#no-mono{
color:green;
}
#mono{
color:#fff;
}
</style>
</head>
<body>
<p id="mono">You are using monochrome device.</p>
<p id="no-mono">You are not using monochrome device.</p>
</body>
</html>
Devices Value
Value | Explanation |
---|---|
monochrome | Specifies the bits per pixel in a monochrome frame buffer. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.