Announcement

Collapse
No announcement yet.

<TABLE frame="void"> not working in FF or Chrome

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    <TABLE frame="void"> not working in FF or Chrome

    Is <TABLE frame="void"> not supported in FF or Chrome?

    I use it towards the bottom of my home page and it works great in IE; but in FF and Chrome, it shows the outer borders.

    I don't know up from down when it comes to CSS, so is there a way to make my table display consistently across browsers with old-school table tags?
    Bronson Design Studio, LLC
    Website: bronsondesign.com
    Facebook: facebook.com/bronsondesign

    #2
    Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

    That is supported by Firefox just fine (have just tried it in FF 3.5, Safari 4.02, Opera 9.64). If it's not working for you in certain browsers, chances are you have something in your CSS declarations that overrides this setting and has explicit borders set up. Try it on a test html page with no external CSS declarations, then if it works for you (as it should), look through your CSS file to eliminate the borders, or define a new class just for the tables where you want to use the frame="void" option.

    Comment


      #3
      Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

      Originally posted by dotCOM_host View Post
      That is supported by Firefox just fine (have just tried it in FF 3.5, Safari 4.02, Opera 9.64). If it's not working for you in certain browsers, chances are you have something in your CSS declarations that overrides this setting and has explicit borders set up. Try it on a test html page with no external CSS declarations, then if it works for you (as it should), look through your CSS file to eliminate the borders, or define a new class just for the tables where you want to use the frame="void" option.
      thanks, but I'm not using css
      Bronson Design Studio, LLC
      Website: bronsondesign.com
      Facebook: facebook.com/bronsondesign

      Comment


        #4
        Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

        Can you post a link to a page where we can see this in action, and review the source code?

        Comment


          #5
          Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

          Originally posted by dotCOM_host View Post
          Can you post a link to a page where we can see this in action, and review the source code?
          http://www.bronsondesign.com

          ...it's the table towards the bottom of the page that profiles two companies side by side.

          TIA
          Bronson Design Studio, LLC
          Website: bronsondesign.com
          Facebook: facebook.com/bronsondesign

          Comment


            #6
            Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

            Change border="1" to border="0"
            Bill Weiland - Emporium Plus http://www.emporiumplus.com/store.mvc
            Online Documentation http://www.emporiumplus.com/tk3/v3/doc.htm
            Question http://www.emporiumplus.com/mivamodu...vc?Screen=SPTS
            Facebook http://www.facebook.com/EmporiumPlus
            Twitter http://twitter.com/emporiumplus

            Comment


              #7
              Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

              ...but that will erase the inside borders (which i want to show)
              Bronson Design Studio, LLC
              Website: bronsondesign.com
              Facebook: facebook.com/bronsondesign

              Comment


                #8
                Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

                That table is missing one thing that is required for this to work:

                style="border-collapse: collapse"

                With that and frame="void" the outside frame disappears, while the inside table cells still have borders. Keep border="1" to see it properly.

                Comment


                  #9
                  Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

                  Originally posted by dotCOM_host View Post
                  style="border-collapse: collapse"
                  That did the trick...thank you very much!!!
                  Bronson Design Studio, LLC
                  Website: bronsondesign.com
                  Facebook: facebook.com/bronsondesign

                  Comment


                    #10
                    Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

                    You're welcome!

                    Comment


                      #11
                      Re: &lt;TABLE frame=&quot;void&quot;&gt; not working in FF or Chrome

                      Just for future reference...

                      <TABLE frame="void"> is not valid for modern strict doctypes. The correct syntax would be <TABLE style="frame:void;">
                      Last edited by Biffy; 08-11-09, 04:24 AM.
                      Steve Strickland
                      972-227-2065

                      Comment

                      Working...
                      X