Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Equivalent to produce field glow in other browsers?

I was long using this to add a glow to focused fields, I accessed my page from Firefox for the first time and realized it doesn't work on it, and most likely not on explorer either.

border: 1px solid #E68D29;
outline-color: -webkit-focus-ring-color;
outline-offset: -2px;
outline-style: auto;
outline-width: 5px;

I had copy pasted it from another page so I'm not quite sure how it works. What is the equivalent for Firefox or Explorer? I mean how do I make a similar glow in other browsers? Thanks

like image 576
lisovaccaro Avatar asked Jan 13 '11 23:01

lisovaccaro


People also ask

How do you make a glow in HTML?

Create HTMLCreate an <h1> tag with a class "glow". Write a text in the tag.


1 Answers

Webkit treats "outline-style: auto;" differently than other browsers. If you want to get behavior that's more similar across browsers I'd recommend you use box-shadow instead. It won't apply to older browsers (IE8 and earlier, or FF3.0 and earlier) but otherwise should be the same.

Using this code

  input {
    border: 1px solid #E68D29;
  }
  input.focus {
    border-color: #439ADC;
    box-shadow: 0 0 5px #439ADC; /* IE9, Chrome 10+, FF4.0+, Opera 10.9+ */
    -webkit-box-shadow: 0 0 5px #439ADC; /* Saf3.0+, Chrome */
    -moz-box-shadow: 0 0 5px #439ADC; /* FF3.5+ */
  }

I was able to produce a result that shows cross-browser glow in IE9+, FF4+, Chrome 10+, and Safari 5+.

Option 2) You could experiment with using some combination of outline (which will show in Webkit) and box-shadow (for other browsers).

Option 3) Use a library like Formalize CSS to take care of the cross-platform input styling for you. The results are pretty impressive.

like image 138
metavida Avatar answered Sep 21 '22 13:09

metavida