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
7.4k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.