![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
A simple layout is attempted in CSS but can't be made into practice... The result desired is displayed on: http://www.0011.com/layout/want_to.html (it is validated as HTML 4.01 Strict) but that is done using a table. I don't want to use a table because i think for some browsers, if there are 100 rows... then the table won't be rendered until all 100 rows of images have been detected for the width and height... the page may be empty until all 100 images are loaded. (that might be for some older browsers). Nevertheless, I want to try using span or div to do it. A big issue is that I don't know the size of the image in advance (it can be any image in the database). |
#3
| |||
| |||
|
|
100 images? Maybe you should cut you page down to show maybe 25 at a time. That is your real problem. Next will the world collapse if the text is not centered vertically with the image? If it is so important use a table, or set div to "display: table-cell" and let IE users go hang... |
#4
| |||
| |||
|
|
A simple layout is attempted in CSS but can't be made into practice... The result desired is displayed on: http://www.0011.com/layout/want_to.html (it is validated as HTML 4.01 Strict) but that is done using a table. I don't want to use a table because i think for some browsers, if there are 100 rows... then the table won't be rendered until all 100 rows of images have been detected for the width and height... the page may be empty until all 100 images are loaded. (that might be for some older browsers). Nevertheless, I want to try using span or div to do it. A big issue is that I don't know the size of the image in advance (it can be any image in the database). so I tried just using a div with "vertical-align: middle" and it doesn't work, as in http://www.0011.com/layout/try1.html and then "line-height:100%" using a span and it doesn't work, as in http://www.0011.com/layout/try2.html and also floating the 2 div left and right, and with the right hand side "height:1em;margin:auto 0" just like centering a div horizontally and won't work. http://www.0011.com/layout/try3.html i tried height: 100% and vertical-align: middle and even the the height: 100% won't work, as indicated by the dashed border. http://www.0011.com/layout/try4.html again, the image on the left is unknown for the size as it is an image from the database. Does somebody know how to make it happen without using a table and without using javascript to get the size of the image? thanks very much! |
#5
| |||
| |||
|
|
The BIGGEST reason why this is to be vertically centered is that, the line is actually a "Delete" link... so if the word "Delete" is shown at top or at bottom, then the user may accidentally click the "Delete" for the wrong image. So centering it vertically is very helpful. |
#6
| |||
| |||
|
|
Well you could give visual clues to help. If each image with control links where in a block, "pixbox" you could float image images had have the control links have a top and bottom margins that "push" them visibly with the top and bottom dimensions of the image. You can add margins to the "pixbox" container to give visual separation and|or borders! |
#7
| |||
| |||
|
|
(so that if the image is 20px tall, it is centered. if the image is 800px tall, it is centered). (hoping to understand the mechanics of CSS along the way) |
#8
| |||
| |||
|
|
The result desired is displayed on: http://www.0011.com/layout/want_to.html A big issue is that I don't know the size of the image in advance (it can be any image in the database). |
#9
| |||
| |||
|
|
earlier you mentioned 100 images per page, ten the discussion turned to 25 sort of, throughout you are concerned with speed of [page loading, now you are talking 800px high images, what is going on? Are you loading thumbnails (the sensible thing to do so that the user can leverage up his requirements)? |
#10
| |||
| |||
|
|
On Mar 19, 8:30 am, dorayme <doraymeRidT... (AT) optusnet (DOT) com.au> wrote: earlier you mentioned 100 images per page, ten the discussion turned to 25 sort of, throughout you are concerned with speed of [page loading, now you are talking 800px high images, what is going on? Are you loading thumbnails (the sensible thing to do so that the user can leverage up his requirements)? the real thing is... i want to find out how to vertically center that text on the right without using table but just using div and span. turns out it is rather difficult... and maybe i can do it after reading the whole chapters of CSS Definitive Guide for Inline elements and Positioning. I already read the whole chapter for Block elements. |
![]() |
| Thread Tools | |
| Display Modes | |
| |