Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to create multi column layout with paging in html?

Tags:

html

css

razor

At the bottom of the "page" (some specified height), content flows to the next column. Once that column fills up as well, it flows down to the next "page".'s like the difference between a scroll which has been divided into columns, and an ordinary book whose pages have been divided into columns.see the image attached enter image description here

like image 537
Rakin Avatar asked Oct 29 '25 09:10

Rakin


1 Answers

Try this fiddle I hope it will suffice your purpose. Don't forget to include bootstrap

.item {
background: #F4F5F7;
border: 1px solid darkgrey;
}
.border-fine{
border-top:0px;
border-right:0px;
}
.border-right{
 position:relative;
}
.border-right:after{
 content: '';
 position: absolute;
 z-index: 999;
 top: 5px;
 left: 5px;
 right: 5px;
 bottom: 5px;
 border-right: 2px dashed #ccc;
 }
like image 97
Talha mansoor Avatar answered Oct 31 '25 00:10

Talha mansoor



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!