HighDots Forums  

table:round corners

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss table:round corners in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
AT
 
Posts: n/a

Default table:round corners - 07-13-2003 , 09:43 AM






is there any way I can make the 4 end of table with round corner
without using any images?

<table border=1>
<tr><td>I wanna be a round table</td></tr>
</table>

Reply With Quote
  #2  
Old   
Chris Morris
 
Posts: n/a

Default Re: table:round corners - 07-13-2003 , 09:51 AM






reneeccwest (AT) hotmail (DOT) com (reneeccwest) writes:
Quote:
table border=1
tr><td>I wanna be a round table</td></tr
/table
It only works in Mozilla-based browsers, but it falls back nicely to
square corners otherwise:

table {
\-moz-border-radius: 0.5em;
}

You need to hide this declaration from Netscape 4 to avoid a serious
bug, @import is probably the best way to do that. You should also
bear in mind that Opera 6 will sometimes ignore other declarations in
the same block, so use:

table {
border: thin black solid;
}
table {
\-moz-border-radius: 0.5em;
}

instead of
table {
border: thin black solid;
\-moz-border-radius: 0.5em;
}

--
Chris


Reply With Quote
  #3  
Old   
Stan Brown
 
Posts: n/a

Default Re: table:round corners - 07-14-2003 , 10:18 PM



In article <9f9d6d21.0307122019.801375c (AT) posting (DOT) google.com> in
comp.infosystems.www.authoring.stylesheets, reneeccwest
<reneeccwest (AT) hotmail (DOT) com> wrote:
Quote:
is there any way I can make the 4 end of table with round corner
without using any images?
Yes, your problem is dealt with here:
http://oakroadsystems.com/genl/unice.htm#xpost

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
validator: http://jigsaw.w3.org/css-validator/


Reply With Quote
  #4  
Old   
Guy Simonow
 
Posts: n/a

Default Re: table:round corners - 07-15-2003 , 12:27 PM



reneeccwest wrote:
Quote:
is there any way I can make the 4 end of table with round corner
without using any images?
round corners without table or images:
http://www.albin.net/CSS/roundedCorners/

Guy




Reply With Quote
  #5  
Old   
Jacqui or (maybe) Pete
 
Posts: n/a

Default Re: table:round corners - 07-15-2003 , 12:52 PM



In article <bf1a1e$a0ft4$1 (AT) ID-149179 (DOT) news.uni-berlin.de>, guy_ro (AT) go (DOT) com
says...
Quote:
reneeccwest wrote:
is there any way I can make the 4 end of table with round corner
without using any images?

round corners without table or images:
http://www.albin.net/CSS/roundedCorners/

I think you'll find it does use images:

http://www.albin.net/images/borderTR.gif



Reply With Quote
  #6  
Old   
Lasse Reichstein Nielsen
 
Posts: n/a

Default Re: table:round corners - 07-15-2003 , 02:40 PM



"Guy Simonow" <guy_ro (AT) go (DOT) com> writes:

Quote:
reneeccwest wrote:
is there any way I can make the 4 end of table with round corner
without using any images?

round corners without table or images:
http://www.albin.net/CSS/roundedCorners/
It uses images. It uses them as background images and not img-elements,
but they are images.

There are not generally supported way of making round corners without
images. Mozilla can do it, but I don't know any other browser that
can.

/L
--
Lasse Reichstein Nielsen - lrn (AT) hotpop (DOT) com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.