Don't like ads? PRO users don't see any ads ;-)
Guest

COMPATIBILIDAD HTML5 EN FIREFOX Y CHROME

By: a guest on Aug 8th, 2012  |  syntax: None  |  size: 0.95 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /*FUNCIONAMIENTO DIFERENTE EN LOS NAVEGADORES INDICADO*/
  2. <!doctype html>
  3. <html>
  4.   <head>
  5.     <meta charset="UTF-8">
  6.     <title>Example document</title>
  7.   </head>
  8.   <body>
  9.         <p>Example paragraph</p>
  10.         <svg> <circle r="50" cx="50" cy="50" fill="green"/> </svg>
  11.         <br/>
  12.         <svg> <circle r="10" cx="50" cy="50" fill="green"/> </svg>
  13.         <div>
  14.             <input list="browsers">
  15.                 <datalist id="browsers">
  16.                  <option value="Safari">
  17.                  <option value="Internet Explorer">
  18.                  <option value="Opera">
  19.                  <option value="Firefox">
  20.             </datalist>
  21.         </div>
  22.  
  23.         <div>
  24.             <label>Color: <select name=color required>
  25.                  <option value="">Choose one
  26.                  <option>Red
  27.                  <option>Green
  28.                  <option>Blue
  29.             </select>
  30.             </label>
  31.  
  32.         </div>
  33.     </body>
  34. </html>