CSS Printing ”; Previous Next Printing is an important aspect of any application or webpage. Print of a content can be made very different from its interface look. While printing a user may want to: Use images with higher resolution for more clearer and better result. Adjust the application”s or website”s layout, as per the size and shape of the page. Enhance the overall appearance of the application or website on printing. Provide additional styles only applicable for printing. In order to manage all your printing needs and process, you may take an account of the points referred in this article. CSS Printing – Using A Print Style Sheet You can have a stylesheet explicitly for printing needs and link it to your code. Add the following code block in your html: <link href=”/path/to/print.css” media=”print” rel=”stylesheet” /> CSS Printing – Using Media Queries and @page At-Rule CSS provides the @media at-rule, that can be used to set different styling needs for your webpage when printed on a page or displayed on screen, using the options print and screen, respectively. You can add the following code block at the end of your stylesheet. This is an example. @media print { /* All print related styles to be added here */ #header-part, #footer-part, #nav-part { display: none !important; } } The above code snippet will not print the styles of #header-part, #footer-part, and #nav-part, while printing. The various aspects of pages, such as, orientation, dimension, margin, etc. can be adjusted and modified using the @page at-rule. All the pages or sub-set of some pages can be targeted using this rule, while taking the print. CSS Printing – Print Requests Detection The events beforeprint and afterprint are sent by the browsers to let the content determine, when the printing may have occurred. This feature can be used to adjust the printing layout and the user interface during printing process. CSS Printing – Using @page at-rule In the following example, the content of the webpage is divided into sections, which when opened in print format, breaks into different pages and the margin of the pages is also set in the print format. <html> <head> <style> @page { size: landscape; margin: 15%; } section { page-break-after: always; break-after: page; background-color: aquamarine; width: 500px; } @media print { button { display: none; } } </style> </head> <body> <article> <section> <h2>Header1</h2> <p> Section one </p> </section> <section> <h2>Header2</h2> <p> Section two </p> </section> <section> <h2>Header3</h2> <p> Section three </p> </section> </article> <button style=”background-color: green; color: white; font-size: 1em;”>Print</button> <script> const button = document.querySelector(“button”); button.addEventListener(“click”, () => { window.print(); }); </script> </body> </html> CSS Printing – Using @media Query The following example demonstrates the use of a media query (@media), where a format or style is specified for screen display and the same content is changed for print format. On click of Print button, the page layout and style changes. <html> <head> <style> @media screen { h2 { font-size: large; font-family: Verdana, Geneva, Tahoma, sans-serif; color: blue; font-style: normal; } } @media print { h2 { font-family: cursive; font-style: italic; color: red; } } @media print { button {display: none;} } </style> </head> <body> <article> <section> <h2>Header1</h2> <p> Section one </p> </section> <section> <h2>Header2</h2> <p> Section two </p> </section> <section> <h2>Header3</h2> <p> Section three </p> </section> </article> <button style=”background-color: green; color: white; font-size: 1em;”>Print</button> <script> const button = document.querySelector(“button”); button.addEventListener(“click”, () => { window.print(); }); </script> </body> </html> CSS Printing – Use Of afterprint Event Following example demonstrates the use of afterprint event and post printing the page closes itself and goes back to the last page. <html> <head> <style> @media screen { h2 { font-size: large; font-family: Verdana, Geneva, Tahoma, sans-serif; color: blue; font-style: normal; } } @media print { h2 { font-family: cursive; font-style: italic; color: red; } } @media print { button {display: none;} } </style> </head> <body> <article> <section> <h2>Header1</h2> <p> Section one </p> </section> <section> <h2>Header2</h2> <p> Section two </p> </section> <section> <h2>Header3</h2> <p> Section three </p> </section> </article> <button style=”background-color: green; color: white; font-size: 1em;”>Print</button> <script> const button = document.querySelector(“button”); button.addEventListener(“click”, () => { window.print(); }); window.addEventListener(“afterprint”, () => self.close); </script> </body> </html> CSS Printing – Link To An External Style Sheet The print styles can be added in a file and the same CSS file can be linked to your html code, as an external stylesheet. Refer the example below: <html> <head> <link href=”print.css” media=”print” rel=”stylesheet” /> <style> @media screen { h2 { font-family: Verdana, Geneva, Tahoma, sans-serif; font-style: normal; color: rebeccapurple; } } </style> </head> <body> <article> <section> <h2>Header1</h2> <p> Section one </p> </section> <section> <h2>Header2</h2> <p> Section two </p> </section> <section> <h2>Header3</h2> <p> Section three </p> </section> </article> <button style=”background-color: green; color: white; font-size: 1em;”>Print</button> <script> const button = document.querySelector(“button”); button.addEventListener(“click”, () => { window.print(); }); </script> </body> </html> Print Page Previous Next Advertisements ”;
Category: css
CSS – Justify Self
CSS – justify-self Property ”; Previous Next CSS justify-self property provides a default alignment along the relevant axis for each box by setting the default justify-self for all box items. Possible Values auto − The value is based on the justify-items property of the parent box, except when the box lacks a parent or is absolutely positioned, where it defaults to ”auto” representing normal. normal − This keyword”s effect is determined on the layout mode: The keyword is the same as start in block-level layouts. In absolute positioning, the keyword acts as a ”start” for replaced boxes and a ”stretch” for other absolute-positioned boxes. This keyword is meaningless in table cell layouts because its property is disregarded. This keyword is meaningless in flexbox layouts because its property is disregarded. For grid items, this keyword behaves as a stretch, except for boxes with an aspect ratio or intrinsic sizes, where it functions like 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 − Aligns the items as if the alignment mode were started if its size overflows the alignment container. unsafe − The specified alignment value is honored regardless of the relative sizes of the item and alignment container. Applies To Block-level boxes, absolutely-positioned boxes, and grid items. Syntax Basic Keywords justify-self: auto; justify-self: normal; justify-self: stretch; Positional Alignment justify-self: center; justify-self: start; justify-self: end; justify-self: flex-start; justify-self: flex-end; justify-self: self-start; justify-self: self-end; justify-self: left; justify-self: right; Baseline Alignment justify-self: baseline; justify-self: first baseline; justify-self: last baseline; Overflow Alignment (for positional alignment only) justify-self: safe center; justify-self: unsafe center; CSS justify-self – auto Value The following example demonstrates the justify-self: auto property taking the full width of its grid cell − <html> <head> <style> .container { border: 1px solid black; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 10px; padding: 10px; background-color: greenyellow; } .container > div { border: 2px solid black; padding: 5px; text-align: center; width: 90%; } .item { background-color: lightgray; } .item2 { background-color: violet; justify-self: auto; } </style> </head> <body> <div class=”container”> <div class=”item”>Item 1</div> <div class=”item2″>justify-self: auto</div> <div class=”item”>Item 3</div> <div class=”item”>Item 4</div> <div class=”item”>Item 5</div> <div class=”item”>Item 6</div> </div> </body> </html> CSS justify-self – normal Value The following example demonstrates property justify-self: normal aligns item2 to the left edge of the grid cell − <html> <head> <style> .container { border: 1px solid black; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 10px; padding: 10px; background-color: greenyellow; } .container > div { border: 2px solid black; padding: 5px; text-align: center; } .item { background-color: lightgray; width: 90%; } .item2 { background-color: violet; width: 60%; justify-self: normal; } </style> </head> <body> <div class=”container”> <div class=”item”>Item 1</div> <div class=”item2″>justify-self: normal</div> <div class=”item”>Item 3</div> <div class=”item”>Item 4</div> <div class=”item”>Item 5</div> <div class=”item”>Item 6</div> </div> </body> </html> CSS justify-self – stretch Value The following example demonstrates the justify-self: stretch property stretches the items to fill the entire width of the grid cell − <html> <head> <style> .container { border: 1px solid black; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 10px; padding: 10px; background-color: greenyellow; } .container > div { border: 2px solid black; padding: 5px; text-align: center; width: 90%; } .item { background-color: lightgray; } .item2 { background-color: violet; justify-self: stretch; } </style> </head> <body> <div class=”container”> <div class=”item”>Item 1</div> <div class=”item2″>justify-self: stretch</div> <div class=”item”>Item 3</div> <div class=”item”>Item 4</div> <div class=”item”>Item 5</div> <div class=”item”>Item 6</div> </div> </body> </html> CSS justify-self – start Value The following example demonstrates the justify-self: start property aligns the second item to the start (left) of the grid cell − <html> <head> <style> .container { border: 1px solid black; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 10px; padding: 10px; background-color: greenyellow; } .container > div { border: 2px solid black; padding: 5px; text-align: center; } .item { background-color: lightgray; width: 90%; } .item2 { background-color: violet; width: 60%; justify-self: start; } </style> </head> <body> <div class=”container”> <div class=”item”>Item 1</div> <div class=”item2″>justify-self: start</div> <div class=”item”>Item 3</div> <div class=”item”>Item 4</div> <div class=”item”>Item 5</div> <div class=”item”>Item 6</div> </div> </body>
CSS – Layers
CSS – Layers ”; Previous Next In CSS, you can create layers of various divisions. CSS z-index property can be combined with the position property to create a layer effect. The z-index property specifies the stacking order of an element. You can specify which element should come on top and which at bottom. A z-index property can help you to create more complex webpage layouts. CSS Layers – With z-index Property The following example demonstrates how to create layers using z-index property. The elements with higher z-index value are positioned above the elements of lower z-index value − <html> <head> <style> .box1 { position: absolute; height: 100px; width: 100px; background-color: red; z-index: 1; padding: 3px; left: 10px; top: 10px; } .box2 { position: absolute; height: 100px; width: 100px; background-color: lightblue; z-index: 2; padding: 5px; margin: 10px; left: 50px; top: 30px; } .box3 { position: absolute; height: 100px; width: 100px; background-color: yellow; z-index: 3; padding: 5px; margin: 20px; left: 80px; top: 50px; } p { margin-top: 200px; } </style> </head> <body> <p>The element with z-index value of 1 appears behind the elements with the z-index value of 2 and 3.</p> <div class=”box1″> CSS z-index: 1 </div> <div class=”box2″> CSS z-index: 2 </div> <div class=”box3″> CSS z-index: 3 </div> </body> </html> CSS Layers – Images and Text The following example demonstrates how to create layers using z-index property. Higher z-index elements are positioned above lower z-index elements − <html> <head> <style> img { height: 200px; width: 200px; position: absolute; left: 0px; top: 0px; z-index: 2; margin: 5px; } h1 { margin-top: 30px; z-index: 1; color: red; } </style> </head> <body> <img src=”images/shop.png”> <h3>Tutorialspoint</h3> </body> </html> CSS Layers – Without z-index Property The following example demonstrates how to create layers without using z-index property − <html> <head> <style> .box1 { position: absolute; height: 210px; width: 210px; background-color: red; padding: 10px; left: 10px; top: 10px; } .box2 { position: absolute; height: 150px; width: 150px; background-color: lightblue; padding: 10px; margin: 10px; left: 30px; top: 30px; } .box3 { position: absolute; height: 100px; width: 100px; background-color: yellow; padding: 5px; margin: 10px; left: 60px; top: 60px; } </style> </head> <body> <div class=”box1″> Box 1 </div> <div class=”box2″> Box 2 </div> <div class=”box3″> Box 3 </div> </body> </html> Print Page Previous Next Advertisements ”;
CSS – Attr Selectors
CSS – Atrribute Selector Property ”; Previous Next Description CSS attribute selectors allow you to select HTML elements based on the presence or value of one or more attributes. They are a powerful way to target specific elements in your HTML markup. Attribute selectors are enclosed in square brackets [] and can take various forms. The following sections discusses some common ways to use attribute selectors: CSS [attribute] Selector This selector selects elements that have specified attribute, regardless of its value. Syntax [attribute] Example Following is an example to select all the HTML elements with a “data-toggle” attribute <html> <head> <style> [data-toggle] { background: yellow; color: red; } </style> </head> <body> <h2>CSS [attribute] Selector</h2> <div data-toggle=”yes”>The div with data-toggle attribute</div> <div>The div without data-toggle attribute</div> <p data-toggle=”no”>A paragraph with data-toggle attribute</p> <p>A paragraph without data-toggle attribute</p> </body> </html> CSS [attribute=”value”] Selector This selector selects elements that have a specific attribute with a specific value. Syntax [attribute=”value”] Example This selector selects all elements with a ”data-toggle” attribute whose value is set to ”yes”. <html> <head> <style> [data-toggle=”yes”] { background: yellow; color: red; } </style> </head> <body> <h2>CSS [attribute=”value”] Selector</h2> <div data-toggle=”yes”>The div with data-toggle attribute</div> <div>The div without data-toggle attribute</div> <p data-toggle=”no”>A paragraph with data-toggle attribute</p> <p>A paragraph without data-toggle attribute</p> </body> </html> CSS [attribute*=”value”] Selector This selector selects elements that have a specific attribute with a value containing a specific substring. Syntax [attribute*=”value”] Example This selector selects all the elements with a “src” attribute which contain a “images” in the path: <html> <head> <style> [src*=”images”] { border: 2px dashed red; } </style> </head> <body> <h2>CSS [attribute*=”value”] Selector</h2> <img alt=”Logo” src = “/css/images/logo.png” /> </body> </html> CSS [attribute^=”value”] Selector This selector selects elements that have a specific attribute with a value that starts with a specific string. Syntax [attribute^=”value”] Example This selector selects all elements with a “href” attribute starting with “https://” <html> <head> <style> [href^=”https”] { background: yellow; text-decoration:none; color:red; } </style> </head> <body> <h2>CSS [attribute^=”value”] Selector</h2> <p><a href=”https://www.tutorialspoint.com”>HTTPS Link</a></p> <p><a href=”http://www.tutorialspoint.com”>HTTP Link</a></p> </body> </html> CSS [attribute$=”value”] Selector This selector selects elements that have a specific attribute with a value that ends with a specific string. Syntax [attribute$=”value”] Example This selector selects all elements with a “src” attribute which ends with “.png” <html> <head> <style> [src$=”.png”] { border: 2px dashed red; } </style> </head> <body> <h2>CSS [attribute$=”value”] Selector</h2> <img alt=”Logo” src = “/css/images/logo.png” /> </body> </html> CSS [attribute|=”value”] Selector This selector select elements that have a specific attribute with a value that begins with a specified substring followed by a hyphen (-). This selector is often used for selecting elements with language-specific attributes, such as lang attributes, which often use hyphens to denote language subcodes. Syntax [attribute|=”value”] Example This selector selects all the elements with a “lang” attribute that starts with “en” followed by a hyphen: <html> <head> <style> [lang|=”en”] { border: 2px dashed red; } </style> </head> <body> <h2>CSS [attribute|=”value”] Selector</h2> <div lang=”en”>Hello World in English!</div> <div lang=”fr”>Bonjour tout le monde en français!</div> <div lang=”es”>Hola Mundo en español!</div> </body> </html> CSS [attribute~=”value”] Selector This selector is used to select elements that have a specific attribute with a value containing a specified word. The word should be a standalone word, surrounded by spaces or at the beginning or end of the attribute value. Syntax [attribute~=”value”] Example This selector select all elements with a “class” attribute containing the word “beautifyme” <html> <head> <style> [class~=”beautifyme”] { background-color:lightblue; border:2px solid red; } </style> </head> <body> <h2>CSS [attribute|=”value”] Selector</h2> <div class=”beautifyme”>div with <b>beautifyme</b> class</div> <div class=”beautifyme1″>div with <b>beautifyme1</b> class</div> <div class=”beautifyme-2″>div with <b>beautifyme-2</b> class</div> </body> </html> Attribute Selectors For href Links You can style elements based on their href attribute is a common attribute used on <a> elements to specify the URL that the link points to. Here is an example − <html> <head> <style> ul { list-style: none; } a[href] { color: rgb(11, 11, 231); } a[href=”css_backgrounds.htm”] { color: rgb(224, 152, 18); } a[href~=”css_colors.htm”] { color: rgb(51, 255, 0); } a[href|=”css_padding.htm”] { color: rgb(0, 255, 255); } a[href^=”css_margins.htm”] { color: rgb(255, 0, 55); } a[href$=”css_lists.htm”] { color: rgb(255, 230, 0); } a[href*=”css_borders.htm”] { color: rgb(112, 108, 108); } </style> </head> <body> <ul> <li> <a href=”css_text.htm”>CSS Text</a></li> <li><a href=”.htm”>CSS Background</a></li> <li><a href=”css_colors.htm”>CSS Color</a></li> <li><a href=”css_padding.htm”>CSS Padding</a></li> <li><a href=”css_margins.htm”>CSS Margin</a></li> <li><a href=”css_lists.htm”>CSS List</a></li> <li><a href=”css_borders.htm”>CSS Borders</a></li> </ul> </body> </html> Attribute Selectors For Inputs Attribute selectors can be used to select input elements based on specific criteria, such as their type, name, value, or other attributes. Here is an example − <html> <head> <style> input { display: block; margin: 10px; } input[type] { border: 1px solid #e0dd29; } input[placeholder=”Password”] { border: 1px solid #f00; } input[name|=”emailid”] { background-color: rgb(236, 178, 233); } input[type~=”submit”] { background-color: rgb(88, 241, 88); padding: 10px; } input[value^=”But”] { background-color: rgb(236, 149, 68); padding: 10px; } input[type$=”box”] { border-radius: 5px; height: 50px; width: 20px; } input[type*=”adi”] { height: 50px; width: 20px; } </style> </head> <body> <input type=”text” placeholder=”Username”> <input type=”password” placeholder=”Password”> <input type=”email” placeholder=”Email” name=”emailid”> <input type=”submit” placeholder=”Submit”> <input type=”button” value=”Button”> <input type=”checkbox” placeholder=”Checkbox”> <input type=”radio” placeholder=”Radio”> </body> </html> Attribute Selectors For Title To style elements based on the title attribute, you can use the CSS attribute selector title to style elements that have a title attribute containing a specific value. Here is an example − <html> <head> <style> span { display: block; margin: 10px; padding: 5px; } span[title] { border: 2px solid rgb(231, 40,
CSS – Writing Mode
CSS – writing-mode Property ”; Previous Next CSS writing-mode property is used to specify the direction of text content flows within an element. It specifies whether text should be displayed horizontally or vertically. It is particularly useful for handling text orientation in non-Latin scripts, such as Chinese, Japanese, and Arabic, as well as for creating creative and visually interesting layouts. Possible Values horizontal-tb − Default value. It sets the text to be laid out in horizontal writing mode, where text flows from left to right and top to bottom, as in most Western languages. vertical-rl − This value specifies a vertical writing mode from right to left, commonly used for scripts like Chinese, Japanese, or Korean. Text flows vertically, starting from the right and proceeding to the left. vertical-lr − Similar to vertical-rl, this value also represents a vertical writing mode, but the text flows from left to right, which is used in scripts like Mongolian. sideways-rl − This value specifies vertical text flow from top to bottom, but positions the text from right to left. This value is used for vertical scripts like Mongolian or some forms of vertical Japanese text, where the characters are rotated 90 degrees clockwise and read from right to left. sideways-lr − This value specifies vertical text flow from bottom to top, but positions the text from left to right. The lr, lr-tb, rl, tb, tb-lr, and tb-rl writing modes in CSS are deprecated, and should no longer be used. Instead, you should use the horizontal-tb or vertical-lr writing modes. The following table shows the deprecated writing modes and their equivalents: Deprecated Value Equivalent Value lr horizontal-tb rl horizontal-tb lr-tb horizontal-tb tb vertical-lr tb-lr vertical-lr tb-rl vertical-rl Applies to All the HTML elements except table row groups, table column groups, table rows, and table columns. DOM Syntax object.style.writingMode = “horizontal-tb|vertical-rl|vertical-lr|sideways-rl|sideways-lr”; CSS writing-mode – horizontal-tb Value The following example demonstartes writing-mode property set to value horizontal-tb, where text is read from left to right and top to bottom − <html> <head> <style> .box { width: 250px; background-color: pink; writing-mode: horizontal-tb; } </style> </head> <body> <h2>CSS writing-mode: horizontal-tb</h2> <div class=”box”> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </div> </body> </html> CSS writing-mode – vertical-rl Value The following example demonstartes writing-mode property set to value vertical-rl, where text is read from right to left and top to bottom − <html> <head> <style> .box { height: 250px; background-color: pink; writing-mode: vertical-rl; } </style> </head> <body> <h2>CSS writing-mode: vertical-rl</h2> <div class=”box”> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </div> </body> </html> CSS writing-mode – vertical-lr Value The following example demonstartes that the writing-mode property set to value vertical-rl value, where text is read from left to right and top to bottom: − <html> <head> <style> .box { height: 250px; background-color: pink; writing-mode: vertical-lr; } </style> </head> <body> <h2>CSS writing-mode: vertical-lr</h2> <div class=”box”> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </div> </body> </html> CSS writing-mode – sideways-rl Value The sideways-rl value is only supported by Firefox Browser. The following example demonstrates that writing-mode property set to value sideways-rl, where text read vertically from top to bottom, with characters arranged from right to left − <html> <head> <style> .box { height: 300px; background-color: pink; writing-mode: sideways-rl; } </style> </head> <body> <h2>CSS writing-mode: sideways-rl – This example is only supported by Firefox Browser.</h2> <div class=”box”> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </div> </body> </html> CSS writing-mode – sideways-lr Value The sideways-lr value is only supported by Firefox Browser. The following example demonstrates that writing-mode property set to value sideways-lr, where text is read vertically from top to bottom, with characters arranged from left to right − <html> <head> <style> .box { height: 300px; background-color: pink; writing-mode: sideways-lr; } </style> </head> <body> <h2>CSS writing-mode: sideways-lr – This example is only supported by Firefox Browser.</h2> <div class=”box”> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </div> </body> </html> CSS writing-mode – Asthetic Use (english Language) The
CSS – Inset
CSS – inset ”; Previous Next The CSS property inset is a shorthand for the other CSS properties top, right, bottom, and / or left. It follows the same multi-value syntax as that of margin CSS property. The inset property specifies the physical offsets, irrespective of the writing mode, direction, and text orientation of the element. Possible Values The CSS property inset takes the same set of values as left CSS property, which are as follows: <length> − Can specify a negative, null or positive value. <percentage> − Percentage of the container”s width. auto − Default value. Browser calculates the left position. inherit − Specifies the same value as computed from its parent element. Applies To All positioned elements. Syntax inset = <”top”>{1,4} /* <length> values */ inset: 5px; /* value applied to all edges */ inset: 5px 10px; /* top/bottom left/right */ inset: 3px 5px 8px; /* top left/right bottom */ inset: 3.4em 5em 4em 4em; /* top right bottom left */ /* <percentage>s of the width (left/right) or height (top/bottom) of the containing block */ inset: 15% 10% 10% 10%; /* Keyword value */ inset: auto; CSS inset – Four Length Values The following example demonstrates the use of inset property with four length values passed to it, which determines the top, right, bottom and left offset values. <html> <head> <style> div { background-color: green; width: 180px; height: 120px; position: relative; } .inset-ex { writing-mode: sideways-rl; position: absolute; inset: 25px 45px 35px 15px; background-color: greenyellow; } </style> </head> <body> <div> <span class=”inset-ex”>Inset – 4 values</span> </div> </body> </html> CSS inset – Three Length Values The following example demonstrates the use of inset property with three length values passed to it, which determines the top, right, bottom and left offset values. <html> <head> <style> div { background-color: green; width: 180px; height: 120px; position: relative; } .inset-ex { writing-mode: sideways-rl; position: absolute; inset: 25px 35px 15px; background-color: greenyellow; } </style> </head> <body> <div> <span class=”inset-ex”>Inset – 3 values</span> </div> </body> </html> CSS inset – Two Length Values The following example demonstrates the use of inset property with two length values passed to it, which determines the top, right, bottom and left offset values. <html> <head> <style> div { background-color: green; width: 180px; height: 120px; position: relative; } .inset-ex { writing-mode: sideways-rl; position: absolute; inset: 25px 35px; background-color: greenyellow; } </style> </head> <body> <div> <span class=”inset-ex”>Inset – 2 values</span> </div> </body> </html> CSS inset – One Length Value The following example demonstrates the use of inset property with just one length value passed to it, which determines the top, right, bottom and left offset values. <html> <head> <style> div { background-color: green; width: 180px; height: 120px; position: relative; } .inset-ex { writing-mode: sideways-rl; position: absolute; inset: 35px; background-color: greenyellow; } </style> </head> <body> <div> <span class=”inset-ex”>Inset – 1 value</span> </div> </body> </html> CSS inset – Percentage Value The following example demonstrates the use of inset property with two percentage values passed to it, which determines the top, right, bottom and left offset values. <html> <head> <style> div { background-color: green; width: 180px; height: 120px; position: relative; } .inset-ex { writing-mode: sideways-rl; position: absolute; inset: 25% 35%; background-color: greenyellow; } </style> </head> <body> <div> <span class=”inset-ex”>Inset – 2 % values</span> </div> </body> </html> CSS inset – Mixed Values The following example demonstrates the use of inset property with mixed values, i.e., one length and another as percentage values passed to it, which determines the top, right, bottom and left offset values. <html> <head> <style> div { background-color: green; width: 180px; height: 120px; position: relative; } .inset-ex { writing-mode: sideways-rl; position: absolute; inset: 0.25em 10%; background-color: greenyellow; } </style> </head> <body> <div> <span class=”inset-ex”>Inset – mixed values</span> </div> </body> </html> CSS inset – auto Value The following example demonstrates the use of inset property with auto value passed to it, which determines the top, right, bottom and left offset values. <html> <head> <style> div { background-color: green; width: 180px; height: 120px; position: relative; } .inset-ex { writing-mode: vertical-lr; position: absolute; inset: auto; background-color: greenyellow; } </style> </head> <body> <div> <span class=”inset-ex”>Inset – auto</span> </div> </body> </html> CSS inset – Related Properties The following table lists all the related properties of CSS inset: Property Description bottom Sets the vertical position of a positioned element at the bottom. left Sets the horizontal position of a positioned element on the left side. right Sets the horizontal position of a positioned element on the right side. top Sets the vertical position of a positioned element at the top. margin Shorthand for setting the margin of an element. inset-block Specifies the logical block start and end offsets of an element. inset-inline Specifies the logical block start and end offsets of an element in the inline direction. Print Page Previous Next Advertisements ”;
CSS – Max Inline Size
CSS – max-inline-size Property ”; Previous Next CSS max-inline-size property specifies the maximum horizontal or vertical size of an element”s block, determined by its writing mode and equivalent to either max-height and max-width based on the writing mode value. The max-inline-size property sets the maximum width for horizontal writing modes and the maximum height for vertical writing modes, respectively. A companion property, max-block-size defines the other dimension. Possible Values The max-inline-size property accepts the same values as max-height and max-width. Applies To Same as width and height. Syntax <length> Values max-inline-size: 300px; max-inline-size: 25em; <percentage> Values max-inline-size: 40%; Keyword Values max-inline-size: none; max-inline-size: max-content; max-inline-size: min-content; max-inline-size: fit-content; max-inline-size: fit-content(20em); CSS max-inline-size – <length> Value The following example demonstrates the max-inline-size: 300px property sets the maximum width of the element to the 300px − <html> <head> <style> div { background-color: greenyellow; border: 3px solid red; max-inline-size: 300px; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h4>CSS max-inline-size: 300px</h4> </div> </body> </html> CSS max-inline-size – <percentage> Value The following example demonstrates the max-inline-size: 80% property sets the maximum width of the element to the 80% − <html> <head> <style> div { background-color: greenyellow; border: 3px solid red; max-inline-size: 80%; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h4>CSS max-inline-size: 80%</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html> CSS max-inline-size – <max-content> Value The following example demonstrates the max-inline-size: max-content property allowed the width of the div element to expand horizontally to fit the content − <html> <head> <style> div { background-color: greenyellow; border: 3px solid red; max-inline-size: max-content; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h4>CSS max-inline-size: max-content</h4> </div> </body> </html> CSS max-inline-size – With Vertical Text The following example demonstrates the max-inline-size property with writing-modes to display text in vertical direction − <html> <head> <style> div { background-color: greenyellow; border: 2px solid blue; margin: 10px; padding: 5px; block-size: 100%; max-inline-size: 100px; writing-mode: vertical-rl; } </style> </head> <body> <div > <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html> Print Page Previous Next Advertisements ”;
CSS – Positioning
CSS – Positioning ”; Previous Next CSS Positioning helps to manipulate position of any element in a web page. In this tutorial we will learn position property and values associated with it. Table of Contents What is CSS Position? Static Positioned Element Relative Positioned Elements Absolutely Positioned Elements Position Fixed Element Sticky Positioned Element Positioning Text in an Image Position Related Properties What is CSS Position? In CSS position property is used to create floating elements, floating sidebar, and other interactive features by adjusting position of elements in webpage. Along with position property, other properties like top, bottom, right, and left are used to control its exact position on the page. They specify the offsets of an element from its edges. We will see examples for those in this tutorial. Syntax Following are possible values for css position. position: static | relative | absolute | fixed | sticky; Static Positioned Element When you use the position: static property, the element will be positioned normally in the document flow. The left, right, top, bottom, and z-index properties will not affect the element. This is the default value for position property. Example In this example we defined two static positioned div elements and one relative positioned element. See the difference. <!DOCTYPE html> <html lang=”en”> <head> <style> .container { padding: 20px; border: 1px solid #ccc; } .static-element { position: static; background-color: lightblue; padding: 10px; margin: 10px 0; } .non-static-element { position: relative; top: 20px; background-color: lightgreen; padding: 10px; } </style> </head> <body> <div class=”container”> <div class=”static-element”> This is a static element (default position). </div> <div class=”non-static-element”> This element is not static and is moved 20px down. </div> <div class=”static-element”> This is another static element (default position). </div> </div> </body> </html> Relative Positioned Elements CSS position: relative property positions the elements relative to their original position in the page. You can use the left, right, top, and bottom properties to move the element around, but it will still take up space in the document flow. Example In this example we defined one static positioned div element and one relative positioned element. See the difference. <!DOCTYPE html> <html lang=”en”> <head> <style> *{ padding: 15px; } .container { border: 1px solid #ccc; } .static-element { position: static; background-color: lightblue; } .relative-element { position: relative; top: 20px; left: 30px; background-color: lightgreen; } .normal-flow { background-color: lightcoral; margin: 10px 0; } </style> </head> <body> <div class=”container”> <div class=”static-element”> This is a static element (default position). </div> <div class=”relative-element”> This element is relatively positioned 20px down and 30px right. </div> <div class=”normal-flow”> This element is in the normal document flow, after the relative element. </div> </div> </body> </html> Absolutely Positioned Elements An element with position: absolute is taken out of the document flow and positioned relative to its nearest positioned ancestor (if any). If there is no positioned ancestor, then the element is positioned relative to the viewport. You can use top, right, bottom, and left properties to specify the position of the element relative to its containing block. Example This example show use of position absolute <!DOCTYPE html> <html lang=”en”> <head> <style> *{ padding: 15px; } .container { /* This makes container positioned ancestor */ position: relative; width: 70%; height: 200px; border: 1px solid #ccc; } .static-element { position: static; background-color: lightblue; padding: 10px; margin: 10px 0; } .absolute-element { position: absolute; /* 50px from top of nearest positioned ancestor */ top: 50px; /* 30px from left of nearest positioned ancestor */ left: 30px; background-color: lightgreen; padding: 10px; } </style> </head> <body> <div class=”container”> <div class=”static-element”> This is a static element (default position). </div> <div class=”absolute-element”> This element is absolutely positioned 30px from top and 50px from left. </div> </div> </body> </html> Position Fixed Element In CSS position: fixed property is used to make element stay in the same place on the screen even when the user scrolls. You can then use the left, right, top, and bottom properties to position the element where you want it. Example In this example you can see that paragraph element remain there when you scroll down. <html> <head> <style> div { width: 100%; height: 500px; background-color: lightgrey; overflow: auto; padding: 15px; } .fixed-position { position: fixed; top: 50%; left: 20%; padding: 5px; background-color: white; } </style> </head> <body> <div> <p>You can Scroll down…</p> <p class=”fixed-position”> Tutorialspoint CSS Position Fixed </p> <p> White screen will remain at 50% height from top </p> </div> </body> </html> Sticky Positioned Element In CSS position: sticky property is used to make any element stay at the top of container even when the user scrolls. You can then use the left, right, top, and bottom properties to position the element where you want it. The position: sticky property is a combination of the position: relative and position: fixed properties Example In this example you can see that when you scroll, fixed move to top <html> <head> <style> div { width: 100%; height: 500px; background-color: lightgrey; overflow: auto; padding: 15px; } .sticky-position { position: sticky; top: 50%; left: 20%; padding: 5px; background-color: white; } </style> </head> <body> <div> <p>You can Scroll down…</p> <p class=”sticky-position”> TutorialsPoint CSS Position Fixed </p> <p> White screen will stick at top of screen when you scroll down. </p> </div> </body> </html> Positioning Text in an Image In following example, you can use the position: absolute property to position text in different directions inside an image. The text elements are positioned at the top left, top right,
CSS – Accent Color
CSS – accent-color Property ”; Previous Next CSS accent-color property determines the accent color that can be applied to user-interface controls such as radio button, checkboxes, buttons etc. This property gives the flexibility to assign color of user”s choice to the user-interface control. Syntax accent-color: auto | color | initial | inherit; Value Description auto The browser selects the accent color. Default value. color It specifies the color to be used. Different formats (rgb, hex, color-name, etc) can be used. initial This sets the property to its initial value inherit This inherits the property from the parent element Examples of CSS Accent Color Property Below examples will explain the accent-color property with different values. Setting Default Color To allow the browser to give the color to the user-interface controls, the auto value can be used. This is shown in the example below. Example <!DOCTYPE html> <html> <head> <style> input { accent-color: auto; } </style> </head> <body> <h2>CSS accent-color property</h2> <div> <input type=”checkbox” id=”check” checked> <label for=”check”>accent-color: auto</label> </div> <div> <input type=”radio” id=”clicked” checked> <label for=”clicked”>accent-color:auto</label> </div> <div> <input type=”range” id=”pull”> <label for=”pull”>accent-color:auto</label> </div> </body> </html> Customizing Color To apply color of our choice to the user-interface controls, we can specify the color in different formats. This is shown in the example below. Three different formats have been used – color name, color rgb value and color hexadecimal value. Example <!DOCTYPE html> <html> <head> <style> input[type=radio] { accent-color: #ffa500; } input[type=range] { accent-color: rgb(55, 255, 0); } progress { accent-color: red; } </style> </head> <body> <h2>CSS accent-color property</h2> <h3>accent-color for radio buttons</h3> <input type=”radio” id=”radio1″ name=”gender” checked> <label for=”radio1″>Male</label></br> <input type=”radio” id=”radio2″ name=”gender”> <label for=”radio2″>Female</label> <h3>accent-color for a range</h3> <label for=”ran”>Range</label></br> <input type=”range” id=”ran” name=”range_val” min=”0″ max=”5″> <h3>accent-color for a progress</h3> <label for=”prog”>Progress</label></br> <progress id=”prog” name=”prog_val” value=”60″ max=”100″>60%</progress> </body> </html> Supported Browsers Element accent-color 93.0 93.0 92.0 15.4 79.0 css_properties_reference.htm Print Page Previous Next Advertisements ”;
CSS – Loaders
CSS – Loaders ”; Previous Next CSS loaders are animation effects that are used to indicate the loading process of a webpage. They are implemented using CSS and can be applied to various elements on a webpage, such as a spinner or a loading progress. CSS loaders are commonly used to improve user experience by visually indicating that content is being loaded or processed. Sample of CSS Loaders Here you can see what is a CSS loader, you may have seen these kind of loading animation on different websites. Table of Contents How to Create a CSS Loader? Basic CSS Loaders Example Create Pulsing Dots Loader Different Types of Spinning Loaders CSS Loaders Using Gradient How to Create a CSS Loader? To create a loader in CSS, follow the below mentioned steps steps. Create the HTML Structure: Define a outer div container element to hold loader content and a inner div container for loader. Style the Loader Container: Set up the width and height for loader container. Use flex layout to center loader elements properly inside the container. Style the Loader Element: Set up height and width for loader element also. Then set up border-top property as per width and color of loader you want. Also use border-radius value as 50% to ensure a circular loader. Add Animation to the Loader: Use CSS animation to create the loading effect. With this you can add rotation effect, scaling, or any other transformations. Define Keyframes for Animation: Specify the @keyframes rules for your animation, detailing how the loader should move or change over time. You may use various color combinations, shape, patterns and animation tricks for the loader. Play around with CSS properties to create your loader. You need to add the -webkit- prefix in your code for the browsers that do not support the animation and transform properties. Basic CSS Loaders Example Following example demonstrates creating a loader using CSS as discussed in the previous section: Example <!DOCTYPE html> <html> <head> <style> .container { display: flex; justify-content: space-around; align-items: center; height: 150px; background-color: #e0f7e9; margin: 0; } .loader { border: 8px solid #e0f7e9; border-top: 8px solid #34a853; border-radius: 50%; width: 60px; height: 60px; animation: innerFrame-spin 2s ease infinite; } @keyframes innerFrame-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> </head> <body> <div class=”container”> <div class=”loader”> </div> </div> </body> </html> Create Pulsing Dots Loader The pulsing dots loader is commonly used in windows operating system while booting the system. We made this using six div elements inside loader each set with different animation delay using pseudo-class :nth-child. Example <!DOCTYPE html> <html> <head> <style> .container { display: flex; justify-content: space-around; align-items: center; height: 150px; background-color: #e0f7e9; margin: 0; } .PulsingDotsLoader { display: flex; justify-content: space-around; align-items: center; width: 60px; height: 60px; } .PulsingDotsLoader div { width: 12px; height: 12px; background-color: #34a853; border-radius: 50%; animation: PulsingDotsLoader-animation 1.2s ease infinite; } .PulsingDotsLoader div:nth-child(1) { animation-delay: -0.6s; } .PulsingDotsLoader div:nth-child(2) { animation-delay: -0.5s; } .PulsingDotsLoader div:nth-child(3) { animation-delay: -0.4s; } .PulsingDotsLoader div:nth-child(4) { animation-delay: -0.3s; } .PulsingDotsLoader div:nth-child(5) { animation-delay: -0.2s; } .PulsingDotsLoader div:nth-child(6) { animation-delay: -0.1s; } @keyframes PulsingDotsLoader-animation { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.5); opacity: 0.3; } } </style> </head> <body> <div class=”container”> <div class=”PulsingDotsLoader”> <div> </div> <div> </div> <div> </div> <div> </div> <div> </div> <div> </div> </div> </div> </body> </html> Different Types of Spinning Loaders This example shows loaders with multiple spinners. First loader have two spinners, because we defined properties border-top and border-bottom. For second loader we defined border-right along with previously defined top and bottom values, this make three spinner loader. And for third loader we defined four different values for border property, which makes a four spinner loader. Example <!DOCTYPE html> <html> <head> <style> body { display: flex; justify-content: space-around; align-items: center; height: 200px; background-color: #f0f0f0; } .loader { border: 16px solid #f3f3f3; /* Light grey */ border-top: 16px solid blue; border-bottom: 16px solid blue; border-radius: 50%; width: 70px; height: 70px; animation: spin 2s linear infinite; } .second{ border-right: 16px solid blue; } .third{ border-top: 16px solid #ADD8E6; /* Light Blue */ border-right: 16px solid #87CEEB; /* Sky Blue */ border-bottom: 16px solid #1E90FF; /* Dodger Blue */ border-left: 16px solid #4169E1; /* Royal Blue */ } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> </head> <body> <div class=”loader”> </div> <div class=”loader second”> </div> <div class=”loader third”> </div> </body> </html> CSS Loaders Using Gradient CSS gradients can be used to design custom colors for loader elements by creating a smooth transition between two or more colors. Example <html> <head> <style> .loader-test { width: 50px; height: 50px; padding: 10px; aspect-ratio: 1; border-radius: 50%; margin: 20px; background: linear-gradient(10deg,#ccc,red); mask: conic-gradient(#0000,#000), linear-gradient(#000 0 0) content-box; -webkit-mask-composite: source-out; mask-composite: subtract; animation: load 1s linear infinite; } @keyframes load { to{ transform: rotate(1turn) } } </style> </head> <body> <div class=”loader-test”> </div> </body> </html> Print Page Previous Next Advertisements ”;