table:round corners

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • reneeccwest

    table:round corners

    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>
  • Chris Morris

    #2
    Re: table:round corners

    reneeccwest@hot mail.com (reneeccwest) writes:[color=blue]
    > <table border=1>
    > <tr><td>I wanna be a round table</td></tr>
    > </table>[/color]

    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

    Comment

    • Stan Brown

      #3
      Re: table:round corners

      In article <9f9d6d21.03071 22019.801375c@p osting.google.c om> in
      comp.infosystem s.www.authoring.stylesheets, reneeccwest
      <reneeccwest@ho tmail.com> wrote:[color=blue]
      >is there any way I can make the 4 end of table with round corner
      >without using any images?[/color]

      Yes, your problem is dealt with here:
      'rules of the road' to help everybody have a better time on Usenet newsgroups (Stan Brown)


      --
      Stan Brown, Oak Road Systems, Cortland County, New York, USA
      DRAGON222 menjadi pusat resmi terunggul Sportsbook Digital. Sistem cepat respon, tampilan sangat lancar anti lag, dan kemungkinan menang terjadi pada tekad kuat anda.

      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/

      Comment

      • Guy Simonow

        #4
        Re: table:round corners

        reneeccwest wrote:[color=blue]
        > is there any way I can make the 4 end of table with round corner
        > without using any images?[/color]

        round corners without table or images:


        Guy


        Comment

        • Jacqui or (maybe) Pete

          #5
          Re: table:round corners

          In article <bf1a1e$a0ft4$1 @ID-149179.news.uni-berlin.de>, guy_ro@go.com
          says...[color=blue]
          > reneeccwest wrote:[color=green]
          > > is there any way I can make the 4 end of table with round corner
          > > without using any images?[/color]
          >
          > round corners without table or images:
          > http://www.albin.net/CSS/roundedCorners/
          >[/color]
          I think you'll find it does use images:



          Comment

          • Lasse Reichstein Nielsen

            #6
            Re: table:round corners

            "Guy Simonow" <guy_ro@go.co m> writes:
            [color=blue]
            > reneeccwest wrote:[color=green]
            > > is there any way I can make the 4 end of table with round corner
            > > without using any images?[/color][/color]
            [color=blue]
            > round corners without table or images:
            > http://www.albin.net/CSS/roundedCorners/[/color]

            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@hotpop.com
            Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit. html>
            'Faith without judgement merely degrades the spirit divine.'

            Comment

            Working...