CSS – Clip

CSS – Clip (Obsolete) Property ”; Previous Next CSS clipping property is used to create a clipping region for an element, which defines the visible area of the element. The clip property only applies to elements with absolute or fixed positioning. This chapter discusses how to use clip property. Though some browsers might still support it, this property is rarely used in modern web development. It”s considered obsolete and non-standard. Instead, developers typically use theclip-path property, which provides more flexibility and control over clipping. Following are all possible values that can be used for clip property: auto − The element is visible by default. <shape> − The rect(top, right, bottom, left) value for the clip property defines a rectangular clipping region. The top and bottom values refer to the distance from the top border, while the right and left values refer to the distance from the left border. Applies to Only absolutely positioned elements. Syntax clip = <rect()> | auto; CSS clip – auto Value CSS clip: auto property does not clip the element, so the entire element is visible. This property applies to elements which have the position:absolute or position:fixed property. It is the default value. <html> <head> <style> .clip-auto { position: absolute; width: 200px; background-color: #3be028; padding: 10px; clip: auto; } </style> </head> <body> <div class=”clip-auto”> Lorem Ipsum has been the industry”s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </body> </html> The following example demonstrates that the image will not be cropped, and it will be fully visible within its boundaries − <html> <head> <style> .clip-auto-img { position: absolute; width: 150px; padding: 10px; clip: auto; } </style> </head> <body> <img src=”images/tree.jpg” class=”clip-auto-img”/> </body> </html> CSS clip – rect() Value You can set the clip: rect(top, right, bottom, left) property to specify a rectangular clipping region for an element. The top, right, bottom, and left values can be a length or auto. If auto, the element is clipped to the corresponding border edge. <html> <head> <style> .clip-rect { position: absolute; width: 200px; background-color: #3be028; padding: 10px; clip: rect(0px, 100px, 150px, 0px); } </style> </head> <body> <div class=”clip-rect”> Lorem Ipsum has been the industry”s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </div> </body> </html> The following example demostrate how to use the rect() value to crop an image and make it visible at the top-left corner of the screen − <html> <head> <style> .clip-rect-img { position: absolute; width: 150px; padding: 10px; clip: rect(0px, 200px, 160px, 0px); } </style> </head> <body> <img src=”images/tree.jpg” class=”clip-rect-img”/> </body> </html> CSS Clip – Related Properties Property Description clip-path (Recommended) Defines clipping regions using various shapes and paths. Print Page Previous Next Advertisements ”;

CSS – Max Block Size

CSS – max-block-size Property ”; Previous Next CSS max-block-size property sets the maximum size of an element in the opposite direction to its writing direction provided by writing_mode. For horizontal writing, it is equivalent to max-height, while for vertical writing, it is the same as max-width. The max-inline-size property defines the maximum length for the other dimension. It”s helpful to set max-width and max-height for horizontal and vertical sizes, respectively. When using max-height or max-width, opt for max-block-size for content”s maximum height and max-inline-size for maximum width. Check out writing_mode examples to see the various writing modes. Possible Values You can set the value of the max-block-size property to any value that”s allowed for the max-height and max-width values. <length> − Sets the max-block-size to an absolute value. <percentage> − Sets the max-block-size as a percentage of the block axis”s containing block”s size. none − There is no size limit for the box. max-content − The intrinsic max-block-size. min-content − The minimum max-block-size. fit-content − Available space up to the max-content, but never exceeds the min(max-content, max(min-content, stretch)). fit-content(<length-percentage>) − Fit-content formula is used with the provided argument in place of the available space, i.e. min(max-content, max(min-content, argument)). Applies To Same as height and width. Syntax <length> Values max-block-size: 300px; max-block-size: 25em; <percentage> Values max-inline-size: 40%; Keyword Values max-block-size: none; max-block-size: max-content; max-block-size: min-content; max-block-size: fit-content; max-block-size: fit-content(20em); CSS max-block-size – writing-mode Effects The following are the ways in which the writing-mode values affect the mapping of max-block-size to max-height or max-width: Values of writing-mode max-block-size is equivalent to horizontal-tb, lr(Deprecated), lr-tb (Deprecated), rl (Deprecated), rb (Deprecated), rb-rl (Deprecated) max-height vertical-rl, vertical-lr, sideways-rl (Experimental), sideways-lr (Experimental), tb (Deprecated), tb-rl (Deprecated) max-width CSS Writing Modes Level 3 specification eliminated the writing-mode values sideways-lr and sideways-rl late in the design process. They may be recovered at Level 4. Only SVG 1.x contexts may utilise the writing modes lr, lr-tb, rl, rb, and rb-tl; HTML contexts are no longer permitted for their use. CSS max-block-size – <length> Value The following example demonstrates the max-block-size: 80px property sets the height of the div element to a maximum of 70px − <html> <head> <style> div { background-color: orange; border: 2px solid blue; max-block-size: 80px; } </style> </head> <body> <div> <h3>Tutorialspoint</h3> <h4>CSS max-block-size: 80px</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html> CSS max-block-size – <percentage> Value The following example demonstrates the max-block-size: 80% property sets the height of the div element to a maximum of 80% − <html> <head> <style> div { background-color: violet; border: 2px solid blue; max-block-size: 80%;; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h3>CSS max-block-size: 80%</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html> CSS max-block-size – <max-content> Value The following example demonstrates the max-block-size: max-content property allowed the height of the div element to expand vertically to fit the content − <html> <head> <style> div { background-color: violet; border: 2px solid blue; max-block-size: max-content; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h3>CSS max-block-size: max-content</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html> CSS max-block-size – With Horizontal and Vertical Text The following example demonstrates how to use max-block-size property with writing-modes to display text in horizontal and vertical directions − <html> <head> <style> div { background-color: yellow; border: 2px solid blue; margin: 10px; padding: 5px; max-block-size: 150px; min-block-size: 120px; } .box1 { writing-mode: horizontal-tb; } .box2{ writing-mode: vertical-rl; } </style> </head> <body> <div class=”box1″> <h3>CSS max-block-size with writing-mode: horizontal-tb</h3> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p> </div> <div class=”box2″> <h3>CSS max-block-size with writing-mode: vertical-rl.</h3> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p> </div> </body> </html> Print Page Previous Next Advertisements ”;

CSS – Mix Blend Mode

CSS – mix-blend-mode Property ”; Previous Next CSS mix-blend-mode property determines how the content of an element should blend with the content of its parent and the element”s background. Possible Values <blend-mode> − Define the blending mode to be used. plus-darker − Blending with the plus-darker compositing operator. plus-lighter − Blending with the plus-lighter compositing operator. Cross-fade effects are useful because they eliminate undesired blinking when two overlying items animate their opacity in opposite directions. Applies To All elements. Syntax mix-blend-mode: normal; mix-blend-mode: multiply; mix-blend-mode: screen; mix-blend-mode: overlay; mix-blend-mode: darken; mix-blend-mode: lighten; mix-blend-mode: color-dodge; mix-blend-mode: color-burn; mix-blend-mode: hard-light; mix-blend-mode: soft-light; mix-blend-mode: difference; mix-blend-mode: exclusion; mix-blend-mode: hue; mix-blend-mode: saturation; mix-blend-mode: color; mix-blend-mode: luminosity; mix-blend-mode: plus-darker; mix-blend-mode: plus-lighter; CSS mix-blend-mode – Different mix-blend-mode Values The following example demonstrates the effect of different mix-blend-mode with background box and a front box − <html> <head> <style> .box { width: 200px; height: 150px; position: relative; margin: 10px; padding: 5px; border: 2px solid black; } .background-box { width: 100px; height: 100px; background-color: blue; } .front-box { width: 100px; height: 100px; background-color: red; position: absolute; top: 40px; left: 30px; } .mix-blend-mode-box { display: flex; flex-wrap: wrap; margin-bottom: 20px; } .mode-container { display: flex; flex-direction: column; margin-right: 20px; } h3 { margin-bottom: 10px; } .normal-mode { mix-blend-mode: normal; } .multiply-mode { mix-blend-mode: multiply; } .screen-mode { mix-blend-mode: screen; } .darken-mode { mix-blend-mode: darken; } .lighten-mode { mix-blend-mode: lighten; } .overlay-mode { mix-blend-mode: overlay; } .color-dodge-mode { mix-blend-mode: color-dodge; } .back-burn { background-color: orange; } .color-burn-mode { background-color: blue; mix-blend-mode: color-burn; } .hard-light-mode { mix-blend-mode: hard-light; } .back-hard { background-color: red; } .soft-light-mode { background-color: blue; mix-blend-mode: soft-light; } .difference-mode { background-color: blue; mix-blend-mode: difference; } .exclusion-mode { background-color: blue; mix-blend-mode: difference; } .hue-mode { background-color: blue; mix-blend-mode: hue; } .saturation-mode { blend-mode: saturation; } .color-mode { background-color: blue; mix-blend-mode: hue; } .luminosity-mode { background-color: blue; mix-blend-mode: luminosity; } .plus-darker-mode { background-color: blue; mix-blend-mode: plus-darker; } .plus-lighter-mode { background-color: blue; mix-blend-mode: plus-lighter; } </style> </head> <body> <div class=”mix-blend-mode-box”> <div class=”mode-container”> <h3>mix-blend-mode: normal</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box normal-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: multiply</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box multiply-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: screen</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box screen-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: darken</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box darken-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: lighten</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box lighten-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: overlay</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box overlay-mode”></div> </div> </div> </div> <div class=”mix-blend-mode-box”> <div class=”mode-container”> <h3>mix-blend-mode: color-dodge</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box color-dodge-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: color-burn</h3> <div class=”box”> <div class=”background-box back-burn”></div> <div class=”front-box color-burn-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: hard-light</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box hard-light-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: soft-light</h3> <div class=”box”> <div class=”background-box back-hard”></div> <div class=”front-box soft-light-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: difference</h3> <div class=”box”> <div class=”background-box back-hard”></div> <div class=”front-box difference-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: exclusion</h3> <div class=”box”> <div class=”background-box back-hard”></div> <div class=”front-box exclusion-mode”></div> </div> </div> </div> <div class=”mix-blend-mode-box”> <div class=”mode-container”> <h3>mix-blend-mode: hue</h3> <div class=”box”> <div class=”background-box back-burn”></div> <div class=”front-box hue-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: saturation</h3> <div class=”box”> <div class=”background-box”></div> <div class=”front-box saturation-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: color</h3> <div class=”box”> <div class=”background-box back-burn”></div> <div class=”front-box color-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: luminosity</h3> <div class=”box”> <div class=”background-box back-burn”></div> <div class=”front-box luminosity-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: plus-darker</h3> <div class=”box”> <div class=”background-box back-burn”></div> <div class=”front-box plus-darker-mode”></div> </div> </div> <div class=”mode-container”> <h3>mix-blend-mode: plus-lighter</h3> <div class=”box”> <div class=”background-box back-burn”></div> <div class=”front-box plus-lighter-mode”></div> </div> </div> </div> </body> </html> CSS mix-blend-mode – With HTML The following example demonstrates how circle colors are blended on a screen blending mode − <html> <head> <style> .box { width: 100px; height: 100px; border-radius: 50%; mix-blend-mode: screen; position: absolute; } .box1 { background: blueviolet; } .box2 { background: lightcoral; left: 50px; } .box3 { background: green; left: 30px; top: 50px; } .union { isolation: isolate; position: relative; } </style> </head> <body> <div class=”union”> <div class=”box box1″></div> <div class=”box box2″></div> <div class=”box box3″></div> </div> </body> </html> CSS mix-blend-mode – With SVG The following example demonstrates the mix-blend-mode of the colors based on a screen blending mode with SVG − <html> <head> <style> ellipse { mix-blend-mode: screen; } .union { isolation: isolate; } </style> </head> <body> <svg> <g class=”union”> <ellipse cx=”50″ cy=”40″ rx=”50″ ry=”30″ fill=”blueviolet” /> <ellipse cx=”90″ cy=”40″ rx=”50″ ry=”30″ fill=”lightcoral” /> <ellipse cx=”70″ cy=”70″ rx=”50″ ry=”30″ fill=”green” /> </g> </svg> </body> </html> CSS mix-blend-mode – With Text The following example demonstrates the effect of different mix-blend-mode on the text within a green-colored container − <html> <head> <style> .container { background-color: green; } p { font: italic normal bold 30px Arial, sans-serif;; color: orange; padding: 10px; margin: 0; } .multiply-mode { mix-blend-mode: multiply; } .screen-mode { mix-blend-mode: screen; } .hard-light-mode { mix-blend-mode: difference; } </style> </head> <body> <div class=”container”> <p>Without blend mode</p> <p class=”multiply-mode”>mix-blend-mode: multiply</p> <p class=”screen-mode”>mix-blend-mode: screen</p> <p class=”hard-light-mode”>mix-blend-mode: difference</p> </div> </body> </html> Print Page Previous Next Advertisements ”;

CSS – Overflow

CSS – Overflow Property ”; Previous Next CSS overflow is a shorthand property that specifies how to handle content that overflows the boundaries of its container. It can be used to clip the content, add scrollbars, or display an ellipsis. The overflow property only works for block-level elements with a specified height or width. The overflow property can be used to control the overflow of content in both the horizontal and vertical directions. CSS provides following possible values for overflow property to handle content that overflows an element”s box. visible − The content is not clipped and will overflow the container. hidden − The content is clipped and the overflow is not visible. There are no scroll bars, and the clipped content is not visible. clip − The content is clipped when it proceeds outside its box.This can be used with overflow-clip-margin to set the clipped area. scroll − A scrollbar is added to the container so that the user can scroll to see the overflowed content. auto − A scrollbar is added to the container only when the content overflows. CSS overflow – With visible and hidden Values Following example shows how to set the CSS overflow property to visible or hidden. The default value is visible, which allows content to overflow its boundaries. The hidden value hides any overflowing content. <html> <head> <style> .container { display: flex; } .overflow-visible { height: 130px; width: 250px; overflow: visible; border: 2px solid #000000; background-color: #2fe262; padding: 5px; margin-right: 15px; } h4 { text-align: center; color: #D90F0F; } .overflow-hidden { height: 130px; width: 250px; overflow: hidden; border: 2px solid #000000; background-color: #2fe262; padding: 5px; } </style> </head> <body> <div class=”container”> <div class=”overflow-visible”> <h4>Tutorialspoint CSS Overflow Visible</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry”s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p> </div> <div class=”overflow-hidden”> <h4>Tutorialspoint CSS Overflow Hidden</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry”s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p> </div> </div> </body> </html> CSS overflow – clip Value The following example shows how to hide overflowing content of an element by setting the CSS overflow property to clip. <html> <head> <style> div { height: 130px; width: 250px; overflow: clip; border: 2px solid #000000; background-color: #2fe262; padding: 5px; } h4 { text-align: center; color: #D90F0F; } </style> </head> <body> <div> <h4>Tutorialspoint CSS Overflow Clip</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry”s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic type setting, remaining essentially unchanged.</p> </div> </body> </html> CSS overflow – With scroll and auto Values The following example determines how the CSS overflow property can be set to scroll or auto. Scroll always adds a scrollbar, while auto only adds a scrollbar when needed. <html> <head> <style> .container { display: flex; } .overflow-scroll { height: 130px; width: 250px; overflow: scroll; border: 2px solid #000000; background-color: #2fe262; padding: 5px; margin-right: 15px; } h4 { text-align: center; color: #D90F0F; } .overflow-auto { height: 130px; width: 250px; overflow: auto; border: 2px solid #000000; background-color: #2fe262; padding: 5px; } </style> </head> <body> <div class=”container”> <div class=”overflow-scroll”> <h4>Tutorialspoint CSS Overflow Scroll</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry”s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p> </div> <div class=”overflow-auto”> <h4>Tutorialspoint CSS Overflow Auto</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry”s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p> </div> </div> </body> </html> CSS Overflow – Related Properties Following is the list of CSS properties of overflow: property value overflow-x Displays overflowing content in the horizontal direction. overflow-y Displays overflowing content in the vertical direction. overflow-anchor Determines whether the browser will scroll the page to keep an element in view. overflow-block Determines how the content of an element behaves when it is too wide to fit inside its container. overflow-inline Determines how content is displayed when it overflows the left and right edges of an element. overflow-clip-margin Determines how far the content of an element can overflow its box before being clipped. overflow-wrap Determines whether the browser can break a line of text within an unbreakable string. Print Page Previous Next Advertisements ”;

CSS – Width

CSS – Width Property ”; Previous Next The width property sets the width of an element”s content area. In case, the box-sizing is set to border-box, the property width sets the width of the border area. The value specified by the width property remains within the values defined by min-width and max-width properties. Refer the image for the understanding of width of an element. Possible Values <length>: A specific length value such as pixels (px), centimeters (cm), inches (in), etc. <percentage>: A percentage of the width of the containing element. auto: The browser will calculate the width automatically based on the content. It is the default value. max-content: Defines the intrinsic preferred width. min-content: Defines the intrinsic minimum width. fit-content: Fits the content in the available space, but never more than max-content. fit-content: fit-content formula is used, i.e, min(max-content, max(min-content, <length-percentage>)). Applies to All the HTML elements except non-replaced inline elements, table rows, and row groups. DOM Syntax object.style.width = “100px”; CSS Width – Length Unit Here is an example of adding a width to a div element in length units: <html> <head> <style> div { border: 1px solid black; margin-bottom: 5px; } div.a { width: 100px; background-color: rgb(230, 230, 203); } div.b { width: 5em; background-color: rgb(230, 230, 203); } </style> </head> <body> <div class=”a”>This div element has a width of 100px.</div> <div class=”b”>This div element has a width of 5em.</div> </body> </html> CSS Width – Percentage Value Here is an example of adding a width to a div element in percentage values: <html> <head> <style> div { border: 1px solid black; margin-bottom: 5px; } div.a { width: 120%; background-color: yellow; } div.b { width: 20%; background-color: rgb(236, 190, 190); } </style> </head> <body> <div class=”a”>This div element has a width of 120%.</div> <div class=”b”>This div element has a width of 20%.</div> </body> </html> CSS Width – Auto Here is an example of adding a width to a div element as auto: <html> <head> <style> div { border: 1px solid black; margin-bottom: 5px; } div.auto { width: auto; background-color: yellow; } </style> </head> <body> <div class=”auto”>This div element has a width set as auto.</div> </body> </html> CSS Width – Using max-content and min-content Here is an example of width equal to max-content and min-content: <html> <head> <style> div { border: 1px solid black; margin-bottom: 5px; } div.c { width: max-content; background-color: bisque; } div.d { width: min-content; background-color: darkseagreen; } </style> </head> <body> <div class=”c”>This div element has a width as max-content.</div> <div class=”d”>This div element has a width of min-content.</div> </body> </html> CSS width – Image Here is an example of adding width to an image: <html> <head> <style> div { border: 1px solid black; margin-bottom: 5px; } .demoImg { margin-top: 15px; width: 300px; margin-right: 0.5in; } </style> </head> <body> <img class=”demoImg” src=”images/scancode.png” alt=”image-width”> </body> </html> CSS width – Using fit-content Here is an example of fit-content value set for width of a list: <html> <head> <style> ul { background-color: beige; width: fit-content; padding: 1.5em; border: 2px solid black; } li { display: inline-flex; background-color: orange; border: 2px solid black; padding: 0.5em; } </style> <body> <ul> <li>Item1</li> <li>Item2</li> <li>Item3</li> <li>Item4</li> </ul> </body> </html> CSS Width – Related Properties Following is the list of related CSS properties of width: property value max-width Sets an upper bound on the width of an element. min-width Sets a lower bound on the width of an element. min-content Sets intrinsic minimum width of the content. max-content Sets intrinsic maximum width of the content. fit-content Fits the content depending on the available size. fit-content() Clamps a given size based on the formula min(maximum size, max(minimum size, argument)). Print Page Previous Next Advertisements ”;

CSS – Min Block Size

CSS – min-block-size Property ”; Previous Next CSS min-block-size property sets the minimum size, either horizontally or vertically, of an element”s block based on its writing mode, which corresponds to either the min-width or min-height property based on the writing_mode value. The min-block-size determines the minimum width for vertically oriented writing modes, and the minimum height for horizontally oriented mode.The min-inline-size property defines the other dimension. Possible Values The min-block-size property accepts the same values as min-height and min-width. Applies To Same as width and height. Syntax <length> Values min-block-size: 100px; min-block-size: 5em; <percentage> Values min-block-size: 10%; Keyword Values min-block-size: max-content; min-block-size: min-content; min-block-size: fit-content; min-block-size: fit-content(20em); CSS min-block-size – <length> Value The following example demonstrates the min-block-size: 100px property sets the height of the div element to a minimum of 100px − <html> <head> <style> div { background-color: orange; border: 2px solid blue; min-block-size: 100px; } </style> </head> <body> <div>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div> </body> </html> CSS min-block-size – max-content Value The following example demonstrates the min-block-size: max-content property sets minimum height that fits the content inside it − <html> <head> <style> div { background-color: orange; border: 2px solid blue; min-block-size: max-content; } </style> </head> <body> <div>Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div> </body> </html> CSS min-block-size – With Horizontal and Vertical Text The following example demonstrates how to use min-block-size property with writing-modes to display text in vertical direction − <html> <head> <style> div { background-color: pink; border: 2px solid blue; min-block-size: 200px; writing-mode: vertical-rl; } </style> </head> <body> <div> <p>CSS min-block-size</p> </div> </body> </html> Print Page Previous Next Advertisements ”;

CSS – Overscroll

CSS – overscroll-behavior ”; Previous Next The CSS property overscroll-behavior is a shorthand property that determines what a browser does when the boundary of a scrolling area is reached. The constituent properties of this property are overscroll-behavior-x and overscroll-behavior-y. Scroll chaining is a behavior that is observed when a user scrolls past the boundary (top, bottom, left or right) of a scrollable element, causing the scrolling on an ancestor element. This creates a chain effect in scrolling. For example, if you have a modal dialog box on the webpage, that has content which can be scrolled vertically. As you reach the end of the scrollable area of this modal, the scrolling continues on the main page”s content behind the modal dialog box. This continuous scrolling experience is called the scroll chaining. This behavior may or may not be desirable and in order to avoid it, the property overscroll-behavior is used. The property is applied only on the scrollable containers. Setting this property on <iframe> has no effect and thus it needs to be set on both the <html> and the <body> elements of the iframe”s document. Possible Values The CSS property overscroll-behavior is defined as one or two of the keywords as given below. The two keywords specifies the value on the x and y axes respectively. When only one value is specified, both the x and y axes have the same value. auto − The default scroll behavior is normal. contain − The scroll behavior is seen only in the element where the value is set. No scrolling set on neighboring elements. none − No scroll chaining behavior is seen. Default scroll overflow behavior is avoided. Applies To All non-replaced block-level elements and non-replaced inline-block elements. Syntax overscroll-behavior = [ contain | auto | none ]{1,2} CSS overscroll-behavior – auto Value Following example demonstrates the use of overscroll-behavior: auto that sets the scroll effect continuous. So as the boundary of the scrollable element is reached, on scrolling, the parent element gets scrolled. <html> <head> <style> div { margin: 5px 15px; padding: 3px; border: solid black 1px; overflow: auto; border: 2px solid black; } #main-box { display: flex; flex-wrap: wrap; background-color: cornsilk; height: 800px; } #box-1 { background-color: lightblue; overscroll-behavior: auto; } #main-box > div { flex: 1; height: 150px; } </style> </head> <body> <h1>overscroll-behavior Property</h1> <p>The box displayed below has overscroll-behavior set as auto, which is the default value.</p> <p>Scroll the blue box using the mouse and once it is scrolled completely keep scrolling and see the parent element gets scrolled.</p> <div id=”main-box”> <div id=”box-1″> <h2>overscroll-behavior: auto</h2> <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos voluptatum adipisci harum? Repudiandae doloribus aspernatur ex odit rem quasi eligendi perspiciatis impedit porro reiciendis? Ipsa fugit reprehenderit nesciunt quae voluptates, labore ducimus iste consectetur quibusdam sapiente modi et ab reiciendis assumenda ullam, voluptatibus maiores sunt cupiditate amet. Magnam vel explicabo tempora ad numquam cumque soluta aliquid dolore, ducimus et obcaecati perferendis voluptatibus beatae quasi, facilis nihil culpa dolorum modi officia ab similique at. Iure ab, eius amet similique quaerat tempore, exercitationem aperiam fugiat pariatur error ratione laborum autem nam neque quae quo sed ipsam ullam animi officiis. Magnam assumenda facere similique molestiae harum ratione, esse, laboriosam cum vel quisquam labore est tenetur vero quas ex eum atque voluptatibus temporibus voluptate iste ipsam fugiat reiciendis dolor velit. Delectus molestiae deleniti quam, nisi ullam perspiciatis doloribus dolore dolores, ratione, reprehenderit rerum. Saepe ex, maiores reiciendis aperiam laudantium ipsa ipsam iure amet aliquid at suscipit labore voluptate et iste architecto fugit esse est a eum dicta asperiores error exercitationem minus. Praesentium voluptatem recusandae accusamus veritatis voluptate! Officia nostrum esse vitae fuga odit ab optio quia autem consequuntur, ea modi dignissimos enim assumenda voluptatibus maxime explicabo aliquid repellendus magni molestias hic dolores earum tenetur.</p> </div> </div> </body> </html> CSS overscroll-behavior – Comparison of Values Following example demonstrates the use of overscroll-behavior: contain that sets the scrolling effect contained to the element it is applied. So as the boundary of the scrollable element is reached, on scrolling, the parent element does not get scrolled. <html> <head> <style> div { margin: 5px 15px; padding: 3px; border: solid black 1px; overflow: auto; border: 2px solid black; } #main-box { display: flex; flex-wrap: wrap; background-color: darkcyan; height: 800px; } #box-1 { background-color: pink; } #box-2 { background-color: aliceblue; overscroll-behavior: contain; } #main-box > div { flex: 1; height: 150px; } </style> </head> <body> <h1>overscroll-behavior Property</h1> <p>The two boxes displayed below has overscroll-behavior set as auto and contain, respectively.</p> <p>Scroll the first pink box using the mouse and once it is scrolled completely keep scrolling and see the parent element gets scrolled.</p> <p>Scroll the second white box using the mouse and once it is scrolled completely keep scrolling and see the parent element not getting scrolled.</p> <div id=”main-box”> <div id=”box-1″> <h3>overscroll-behavior: auto</p> <p> Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos voluptatum adipisci harum? Repudiandae doloribus aspernatur ex odit rem quasi eligendi perspiciatis impedit porro reiciendis? Ipsa fugit reprehenderit nesciunt quae voluptates, labore ducimus iste consectetur quibusdam sapiente modi et ab reiciendis assumenda ullam, voluptatibus maiores sunt cupiditate amet. Magnam vel explicabo tempora ad numquam cumque soluta aliquid dolore, ducimus et obcaecati perferendis voluptatibus beatae quasi, facilis nihil culpa dolorum modi officia ab similique at. Iure ab, eius amet similique quaerat tempore, exercitationem aperiam fugiat pariatur error ratione laborum autem nam neque quae quo sed ipsam ullam animi officiis. Magnam assumenda facere similique molestiae harum ratione, esse, laboriosam cum vel quisquam labore est tenetur vero quas ex eum atque voluptatibus temporibus voluptate iste ipsam fugiat reiciendis dolor velit. Delectus molestiae deleniti quam, nisi ullam perspiciatis doloribus dolore dolores, ratione, reprehenderit rerum. Saepe ex, maiores reiciendis aperiam laudantium ipsa ipsam iure amet aliquid at suscipit labore voluptate et iste

CSS – Justify Items

CSS – justify-items Property ”; Previous Next CSS justify-items property provides a default alignment along the relevant axis for each box by setting the default justify-self for all box items. This property”s effect varies based on the layout mode in use: It aligns items in block-level layouts along the inline axis within their containing block. When elements are positioned absolutely, the items within the containing block are aligned on the inline axis, considering the specified top, left, bottom, and right offset values. This property is ignored in table cell layouts . This property is ignored in Flexbox layouts. Aligns the items inside the grid areas on the inline axis in grid layouts. Possible Values normal − This keyword”s effect is determined on the layout mode: Same as start in block-level layouts. Absolute positioning uses this keyword as a ”start” for replaced boxes and a ”stretch” for other absolute-positioned boxes. It has no meaning in table cell layouts because its property is ignored. It has no meaning in flexbox layouts because its property is ignored. This term acts as a ”stretch” for grid items, except boxes with an aspect ratio or intrinsic sizes, which act as a ”start”. start − Aligns the items at the start edge of the alignment container in the corresponding axis. end − Aligns the items at the end edge of the alignment container in the corresponding axis. center − Aligns the items at the centre of the alignment container. flex-start − This value is considered as start, by items that are not children of a flex container. flex-end − This value is considered as end, by items that are not children of a flex container. self-start − The items are aligned to the start edge of the alignment container in the appropriate axis. self-end − The items are aligned to the end edge of the alignment container in the appropriate axis. left − The items are aligned to the left edge of the alignment container. This value acts like start if the property”s axis is not parallel to the inline axis. right − The items are aligned to the right edge of the alignment container in the appropriate axis. This value acts like start if the property”s axis is not parallel to the inline axis. baseline, first baseline, last baseline − Defines alignment with the first or last baseline of a box in its baseline-sharing group, aligns the box”s first or last baseline set with the appropriate baseline, with start as the fallback for the first baseline and end for the last baseline. stretch − When the aggregate size of the items is less than the alignment container, auto-sized items are evenly enlarged, according to max-height/max-width limitations, the combined size fills the alignment container. safe − In case the size of the item overflows the alignment container, the alignment mode of the item is set as “start”. unsafe − The specified alignment value is honored regardless of the relative sizes of the item and alignment container. legacy − This value is inherited by box descendants. However, if a descendant has justify-self: auto, only left, right, or centre values are considered, not the legacy keyword. Applies To All elements. Syntax This property can take any of four forms: Basic keyword: The keyword values are normal or stretch. Baseline alignment: The baseline keyword with an additional first or last. Positional alignment: Choose from center, start, end, flex-start, flex-end, self-start, self-end, left, or right. also optionally unsafe or safe. Legacy alignment: Use the legacy keyword with left or right. Basic Keywords justify-items: normal; justify-items: stretch; Positional Alignment justify-items: center; justify-items: start; justify-items: end; justify-items: flex-start; justify-items: flex-end; justify-items: self-start; justify-items: self-end; justify-items: left; justify-items: right; Baseline Alignment justify-items: baseline; justify-items: first baseline; justify-items: last baseline; Overflow Alignment (for positional alignment only) justify-items: safe center; justify-items: unsafe center; Legacy Alignment justify-items: legacy right; justify-items: legacy left; justify-items: legacy center; CSS justify-items – normal Value The following example demonstrates the justify-items: normal property that aligns the items along the row axis within each grid cell with its default behavior − <html> <head> <style> .box { width: 100%; border: 2px solid black; display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 40px; grid-gap: 10px; justify-items: normal; background-color: greenyellow; } .box > div { width: 100px; border: 2px solid blue; background-color: lightcoral; margin: 5px; text-align: center; } </style> </head> <body> <div class=”box”> <div>Item 1</div> <div>Item 2</div> <div>Item 3</div> <div>Item 4</div> </div> </body> </html> CSS justify-items – stretch Value The following example demonstrates the justify-items: stretch property that stretches the items along the row axis to fill the entire width of their columns − <html> <head> <style> .box { width: 100%; border: 2px solid black; display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 40px; grid-gap: 10px; justify-items: stretch; background-color: greenyellow; } .box > div { border: 2px solid blue; background-color: lightcoral; margin: 5px; text-align: center; } </style> </head> <body> <div class=”box”> <div>Item 1</div> <div>Item 2</div> <div>Item 3</div> <div>Item 4</div> </div> </body> </html> CSS justify-items – start Value The following example demonstrates the justify-items: start property that aligns items against the start edge of the grid container − <html> <head> <style> .box { width: 100%; border: 2px solid black; display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 40px; grid-gap: 10px; justify-items: start; background-color: greenyellow; } .box > div { width: 100px; border: 2px solid blue; background-color: lightcoral; margin: 5px; text-align: center; } </style> </head> <body> <div class=”box”> <div>Item 1</div> <div>Item 2</div> <div>Item 3</div>

CSS – Place Items

CSS – place-items Property ”; Previous Next CSS place-items is a shorthand property used in CSS Grid Layout to set both the align-items and justify-items properties in a single declaration. It allows you to align and justify grid items within the grid container along both the block (column) and inline (row) axes simultaneously This property is a shorthand for the following CSS properties: align-items justify-items Possible Values A single align-items value aligns in both the block and inline directions. An align-items value sets the block direction alignment, followed by justify-items, which specifies inline alignment. Applies To All elements. Syntax Keyword Values place-items: center; place-items: normal start; Positional Alignment place-items: center normal; place-items: start legacy; place-items: end normal; place-items: self-start legacy; place-items: self-end normal; place-items: flex-start legacy; place-items: flex-end normal; Baseline Alignment place-items: baseline normal; place-items: first baseline legacy; place-items: last baseline normal; place-items: stretch legacy; CSS place-items – Placing Items in a Grid Container The following example demonstrates the different behavior of the place-items property in the grid layout − <html> <head> <style> div > div { box-sizing: border-box; border: 2px solid blue; } .row { margin-bottom: 20px; } select { padding: 2px; background-color: yellow; border-radius: 10px; color: blue; } #grid-container { height: 400px; width: 350px; place-items: start; background-color: red; display: grid; grid-template-columns: repeat(3, 100px); } #grid-container > div { width: 60px; min-height: 60px; padding: 5px; margin: 5px; } .gridItem1 { background-color: greenyellow; } .gridItem2 { background-color: violet; } </style> </head> <body> <div class=”row”> <label for=”place-items-values”>place-items: </label> <select id=”place-items-values”> <option value=”start”>start</option> <option value=”center”>center</option> <option value=”end”>end</option> <option value=”stretch”>stretch</option> <option value=”center normal”>center normal</option> <option value=”normal start”>normal start</option> <option value=”center normal”>center normal</option> <option value=”start legacy”>start legacy</option> <option value=”end normal”>end normal</option> <option value=”self-start legacy”>self-start legacy</option> <option value=”self-end normal”>self-end normal</option> <option value=”flex-start legacy”>flex-start legacy</option> <option value=”flex-end normal”>flex-end normal</option> <option value=”baseline”>baseline</option> <option value=”first baseline legacy”>first baseline legacy</option> <option value=”last baseline”>last baseline</option> <option value=”stretch legacy”>stretch legacy</option> </select> </div> <div id=”grid-container”> <div class=”gridItem1″>Grid Item 1</div> <div class=”gridItem2″>Grid Item 2</div> <div class=”gridItem1″>Grid Item 3</div> <div class=”gridItem2″>Grid Item 4</div> <div class=”gridItem1″>Grid Item 5</div> </div> <script> const values = document.getElementById(“place-items-values”); const container = document.getElementById(“grid-container”); values.addEventListener(“change”, () => { container.style.placeItems = values.value; }); </script> </body> </html> CSS place-items – Placing Items in a Flex Container The following example demonstrates the different behavior of the place-items property in the flex layout − <html> <head> <style> div > div { box-sizing: border-box; border: 2px solid blue; display: flex; } .row { margin-bottom: 20px; } select { padding: 2px; background-color: yellow; border-radius: 10px; color: blue; } #flex-container { height: 350px; width: 350px; align-items: start; background-color: red; display: flex; flex-wrap: wrap; } #flex-container > div { width: 60px; min-height: 60px; padding: 5px; margin: 5px; } .flexItem1 { background-color: greenyellow; } .flexItem2 { background-color: violet; } </style> </head> <body> <div class=”row”> <label for=”place-items-values”>place-items: </label> <select id=”place-items-values”> <option value=”start”>start</option> <option value=”center”>center</option> <option value=”end”>end</option> <option value=”stretch”>stretch</option> <option value=”center normal”>center normal</option> <option value=”normal start”>normal start</option> <option value=”center normal”>center normal</option> <option value=”start legacy”>start legacy</option> <option value=”end normal”>end normal</option> <option value=”self-start legacy”>self-start legacy</option> <option value=”self-end normal”>self-end normal</option> <option value=”flex-start legacy”>flex-start legacy</option> <option value=”flex-end normal”>flex-end normal</option> <option value=”baseline”>baseline</option> <option value=”first baseline legacy”>first baseline legacy</option> <option value=”last baseline”>last baseline</option> <option value=”stretch legacy”>stretch legacy</option> </select> </div> <div id=”flex-container”> <div class=”flexItem1″>Flex Item 1</div> <div class=”flexItem2″>Flex Item 2</div> <div class=”flexItem1″>Flex Item 3</div> <div class=”flexItem2″>Flex Item 4</div> <div class=”flexItem1″>Flex Item 5</div> <div class=”flexItem2″>Flex Item 6</div> <div class=”flexItem1″>Flex Item 7</div> </div> <script> const values = document.getElementById(“place-items-values”); const container = document.getElementById(“flex-container”); values.addEventListener(“change”, () => { container.style.placeItems = values.value; }); </script> </body> </html> Print Page Previous Next Advertisements ”;

CSS – Pointer Events

CSS – pointer-event Property ”; Previous Next CSS pointer-event property is used to control how an element responds to pointer events such as mouse clicks, mouseovers, and mouse movements. It allows you to specify whether an element should receive pointer events and whether those events should trigger actions like clicking or hovering. Possible Values auto − : This is the default value. It indicates that the element behaves as normal and responds to pointer events based on its specified CSS properties and content. In SVG content, this value and visiblePainted have the same effect. none − This value indicates that the element should not respond to pointer events. Clicks, hover effects, and other interactions will pass through the element as if it were not there, and the elements beneath it will receive those events instead. visiblePainted − This value indicates that the element does not receive pointer events unless they are triggered on a visible, painted area of the element. Transparent areas within the element do not respond to pointer events.. visibleFill − Similar to visiblePainted, this value indicates that the element only responds to pointer events triggered on visible, painted areas or the fill of the element, ignoring pointer events on transparent areas. visibleStroke − Similar to visiblePainted and visibleFill, this value indicates that the element only responds to pointer events triggered on visible, painted areas or the stroke of the element, ignoring pointer events on transparent areas. visible − Targets pointer events only when the visibility is set to visible. and the mouse cursor is over its interior (fill) or perimeter (stroke), with the fill and stroke values not affecting event processing painted − This value indicates that the element only responds to pointer events triggered on its painted content. Transparent areas within the element do not respond to pointer events. fill − Similar to painted, this value indicates that the element only responds to pointer events triggered on its fill, ignoring events on transparent areas. stroke − Similar to painted and fill, this value indicates that the element only responds to pointer events triggered on its stroke, ignoring events on transparent areas. all − Targets to pointer events when the pointer is over their interior (fill) or perimeter (stroke). The fill, stroke and visibility properties values are unaffected. Applies To All elements. Syntax pointer-event: auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all; Points To Remember When this property is not defined, SVG content has the same properties as the visiblePainted value. The “one value in pointer events not only makes the element the target rather than the pointer event, but it also allows the event to pass through, targeting what is underneath the element. Disabling pointer events on an element using pointer-events does not mean that event listeners will not be triggered. If a child of that element has pointer-events enabled to allow it to be the event target, events aimed at the child will pass via the parent, potentially triggering event listeners. However, if the pointer activity occurs in an area only covered by the parent, it will be missed by both the child and the parent. Elements with pointer-events: none will still get focus via sequential keyboard navigation with the Tab key. CSS pointer-event – none Value The following example demonstrates how the pointer-event: none property disables the hyperlink from being clicked − <html> <head> <style> a[href=”https://tutorialspoint_css_pointer-event.com”] { pointer-events: none; } </style> </head> <body> <a href=”https://tutorialspoint_css_pointer-event.com”>css_pointer-event</a> </body> </html> CSS pointer-event – auto Value The following example demonstrates the pointer-event: auto property allows the anchor element to be clickable − <html> <head> <style> a[href=”https://tutorialspoint_css_pointer-event.com”] { pointer-events: auto; } </style> </head> <body> <a href=”https://tutorialspoint_css_pointer-event.com”>css_pointer-event</a> </body> </html> CSS pointer-event – Disabling Pointer Events on Images The following example demonstrates the pointer-event: auto property disables pointer events (clicking, hovering, etc.) on an images − <html> <head> <style> img { height: 100px; width: 100px; pointer-events: none; } </style> </head> <body> <img src=”images/pink-flower.jpg” alt=”pink-flower”> </body> </html> Print Page Previous Next Advertisements ”;