Found 10483 Articles for Web Development

Orphans CSS Property

karthikeya Boyini
Updated on 16-Mar-2020 07:24:26

178 Views

In typographic lingo, orphans are those lines of a paragraph stranded at the bottom of a page due to a page break, while windows are those lines remaining at the top of a page following a page break. Generally, printed pages do not look attractive with single lines of text stranded at the top or bottom. Most printers try to leave at least two or more lines of text at the top or bottom of each page.The orphans property specifies the minimum number of lines of a paragraph that must be left at the bottom of a page. The widow's property ... Read More

Controlling Pagination with CSS

George John
Updated on 16-Mar-2020 07:21:39

449 Views

To control pagination, use the page-break-before, page-break-after, and page-break-inside properties.Both the page-break-before and page-break-after accept the auto, always, avoid, left, and right keywords.The keyword auto is the default; it lets the browser generate page breaks as needed. The keyword always forces a page break before or after the element, while avoid suppresses a page break immediately before or after the element. The left and right keywords force one or two page breaks, so that the element is rendered on a left-hand or right-hand page.Using pagination properties is quite straightforward. Suppose your document has level-1 headers start new chapters with level-2 headers to denote sections. ... Read More

Usage of page-break-before, page-break-after, and page-break-inside properties in CSS

Samual Sam
Updated on 16-Mar-2020 07:22:40

352 Views

Suppose your document has level-1 headers start new chapters with level-2 headers to denote sections. You'd like each chapter to start on a new, right-hand page, but you don't want section headers to be split across a page break from the subsequent content. You can achieve this using following rule −     Use only the auto and avoid values with the page-break-inside property. If you prefer that your tables not be broken across pages if possible, you would write the rule −    

Paged Media in CSS

Lakshmi Srinivas
Updated on 16-Mar-2020 07:20:51

117 Views

Paged media differ from continuous media in that the content of the document is split into one or more discrete pages. Paged media includes paper, transparencies, pages that are displayed on computer screens, etc.The CSS2 defines a "page box", a box of finite dimensions in which content is rendered. The page box is a rectangular region that contains two areas −The page area − The page area includes the boxes laid out on that page. The edges of the page area act as the initial containing block for a layout that occurs between page breaks.The margin area − It surrounds ... Read More

Role of size property in CSS to set the size and orientation of a page box

Ankith Reddy
Updated on 16-Mar-2020 07:19:41

164 Views

The size property specifies the size and orientation of a page box. There are four values which can be used for page size auto - The page box will be set to the size and orientation of the target sheet.landscape − Overrides the target's orientation. The page box is the same size as the target, and the longer sides are horizontal.portrait − Overrides the target's orientation. The page box is the same size as the target, and the shorter sides are horizontal.length − Length values for the 'size' property create an absolute page box. If only one length value is specified, ... Read More

Fade In Left Big Animation Effect with CSS

karthikeya Boyini
Updated on 16-Mar-2020 07:18:58

144 Views

To implement Fade In Left Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes fadeInLeftBig {             0% {                opacity: 0;                -webkit-transform: translateY(-2000px);             }             100% {                opacity: 1;                -webkit-transform: translateY(0);             }          }          @keyframes fadeInLeftBig {             0% {                opacity: 0;                transform: translateY(-2000px);             }             100% {                opacity: 1;                transform: translateY(0);             }          }          .fadeInLeftBig {             -webkit-animation-name: fadeInLeftBig;             animation-name: fadeInLeftBig;          }                           Reload page                function myFunction() {             location.reload();          }          

Fade In Down Animation Effect with CSS

Arjun Thakur
Updated on 16-Mar-2020 07:18:14

257 Views

To implement Fade In Down Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes fadeInDown {             0% {                opacity: 0;                -webkit-transform: translateY(-20px);             }             100% {                opacity: 1;                -webkit-transform: translateY(0);             }          }          @keyframes fadeInDown {             0% {                opacity: 0;                transform: translateY(-20px);             }             100% {                opacity: 1;                transform: translateY(0);             }          }          .fadeInDown {             -webkit-animation-name: fadeInDown;             animation-name: fadeInDown;          }                           Reload page                function myFunction() {             location.reload();          }          

Fade In Left Animation Effect with CSS

Samual Sam
Updated on 16-Mar-2020 07:16:05

210 Views

To implement Fade In Left Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes fadeInLeft {             0% {                opacity: 0;                -webkit-transform: translateX(-20px);             }             100% {                opacity: 1;                -webkit-transform: translateX(0);             }          }          @keyframes fadeInLeft {             0% {                opacity: 0;                transform: translateX(-20px);             }             100% {                opacity: 1;                transform: translateX(0);             }          }          .fadeInLeft {             -webkit-animation-name: fadeInLeft;             animation-name: fadeInLeft;          }          animation-name: fadeInDown;                           Reload page                function myFunction() {             location.reload();          }          

What is a page box in CSS?

Lakshmi Srinivas
Updated on 16-Mar-2020 07:14:39

218 Views

You can specify the dimensions, orientation, margins, etc., of a page box within an @page rule. The dimensions of the page box are set with the 'size' property. The dimensions of the page area are the dimensions of the page box minus the margin area.For example, the following @page rule sets the page box size to 8.5 × 11 inches and creates '2cm' margin on all sides between the page box edge and the page area −     You can use the margin, margin-top, margin-bottom, margin-left, and margin-right properties within the @page rule to set margins for your page.Finally, ... Read More

Role of media attribute on the LINK element

Chandu yadav
Updated on 16-Mar-2020 07:14:04

148 Views

The media attribute on the LINK element specifies the target media of an external style sheet −Example    

Advertisements