
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set Minimum Number of Visible Lines for an Element in JavaScript
Use the orphans property in JavaScript to set the minimum number of lines for an element that must be visible at the top of a page. You can try to run the following code to learn how to implement orphans property −
document.getElementById("p").style.orphans
This is how you can return the orphans property −
var res = object.style.orphans;
This is how to set the orphans property −
object.style.orphans='number|initial|inherit'
Advertisements