Css does not work in chrome (linux and windows)
I have this code:
<style type="text/css"> div { margin: 100px auto; width: 0px; height: 0px; border-right: 30px solid transparent; border-top: 30px solid red; border-left: 30px solid red; border-bottom: 30px solid transparent; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; position: relative; } </style> <div></div>
which produce:
in firefox,
but in chrome (linux and windows - did not try on mac) I donβt see anything why?
+6