OLD | NEW |
---|---|
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 progress { | 5 progress { |
6 -webkit-appearance: none; | 6 -webkit-appearance: none; |
7 border: solid red; | 7 border: solid red; |
8 } | 8 } |
9 </style> | 9 </style> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <progress max="100" value="50"></progress> | 12 <progress max="100" value="50"></progress> |
13 </body> | 13 </body> |
14 </html> | 14 </html> |
OLD | NEW |