HTML <style> with media overflow-inline
HTML <style> with media overflow-inline
The overflow-inline
value of the media attribute specifies how does the output device handle content that overflows the viewport along the inline axis.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<head>
<style media="overflow-inline: scroll">
p{
color:red;
}
</style>
</head>
<body>
<p>overflow-inline is not supported in any version of chrome, mozilla, IE, Edge, Opera</p>
</body>
</html>
Devices Value
Value | Explanation |
---|---|
none | Content that overflows the inline axis is not displayed. |
scroll | Content that overflows the inline axis can be seen by scrolling to it. |
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.