26.9k views
3 votes
​Which of the following styles sets the column breaks within paragraphs to leave a minimum of two and three lines at the top and bottom of each column respectively?

​A. article p {
break-before: always;
}
​B. article p {
break-before: always;
}

C. article p {
orphans: 3;
widows: 2;
}


D. article p {
break-inside: auto;
}

1 Answer

2 votes

Answer:

C. article p {

orphans: 3;

widows: 2;

}

Step-by-step explanation:

The style rules above is written in CSS (Cascading style sheets) a language used to beautify web contents written in HTML, it sets a minimum of 2 and 3 lines at the top and at the bottom of each column ( named orphans and widows) respectively. according to the style syntax, p is a child element of article element.

User TiMoch
by
5.3k points