A Flash Developer Resource Site

Results 1 to 14 of 14

Thread: CSS tricks/hacks/filters that just work.

Threaded View

  1. #11
    Junior Member
    Join Date
    Dec 2008
    Posts
    1

    Firefox Dotted Borders

    Quote Originally Posted by MyFriendIsATaco
    This is the rule I use to remove the dotted lines in Firefox. It has worked flawlessly for me. I'm not sure where I got it from though.
    Code:
    /** No more dotted borders in Firefox! **/
    input:active, a:active
    {
    	outline: none;
    }
    
    input:focus, a:focus
    {
    	-moz-outline-style: none;
    }


    where in the bloody hell do i put this code... i assume in the actionscript, but it gives me an error... so i try it in the html under the css style and it does nothing...
    Last edited by skyleranelson; 12-04-2008 at 01:36 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center