![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Programmer
Join Date: Feb 2006
Posts: 40
Rep Power: 0
![]() |
template
Can anyone advise me a free html template which can be widened according to the information I print on the webpage.That information will be a huge table which overwhelmingly surpasses the sizes of a normal html page(both x and y axis).
|
|
|
|
|
|
#2 |
|
I eat cake for breakfast.
![]() ![]() ![]() ![]() Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9
![]() |
Tables will be sized according to their contents. Just render the bugger, and your browser will provide scrollbars.
|
|
|
|
|
|
#3 |
|
Professional Programmer
Join Date: Mar 2005
Location: Student of University of Mumbai, Maharashtra State, India
Posts: 344
Rep Power: 4
![]() |
Probably, you could specify the width of the table in percent; so, for any resolution, it does not include the horizontal (< ---- > ) scroll bars, only the vertical scroll bars.
|
|
|
|
|
|
#4 |
|
Unverified User
Join Date: Aug 2005
Location: none
Posts: 146
Rep Power: 0
![]() |
If you squish a lot of content into one width and height of the screen, it probably won't be very readable.
__________________
Warning: My posts may change (dramatically) within the first 15 minutes they're posted. Got 'Nux?—GNU/Linux and other free software support. It's GNU/Linux, not just Linux. |
|
|
|
|
|
#5 |
|
Programmer
Join Date: Feb 2006
Posts: 40
Rep Power: 0
![]() |
Yes I agree a thing.If I cancel the horizontal scroll bars,it wont seem good.I need an html template that can both be widened and heightened according to the length of the text...
|
|
|
|
|
|
#6 |
|
I eat cake for breakfast.
![]() ![]() ![]() ![]() Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9
![]() |
If you just want to scroll a table:
table#myTable {
width: 95%;
height: 50%;
overflow: auto;
}That should do it. |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|