Bonjour !
J'ai bidouillé une étoile, à partir d'une base récupérée sur le web. Cela marche impec sur mon ordinateur, mais pas sur mon smartphone. Une idée ?
J'ai bidouillé une étoile, à partir d'une base récupérée sur le web. Cela marche impec sur mon ordinateur, mais pas sur mon smartphone. Une idée ?
<hr class="stars" id="etoile" onclick="location.reload();" />
<style>
#etoile { font-size:5%; }
.stars:before, .stars:after { content:''; position: absolute; }
.stars
{
width:0; height:0;
border:100ex transparent solid;
border-bottom: 70ex solid;
transform: rotate(35deg);
}
.stars:before
{
border-left: 30ex solid transparent ;
border-right: 30ex solid transparent ;
border-bottom: 80ex solid;
top: -45ex; left: -65ex;
transform: rotate(-35deg);
}
.stars:after
{
border-left: 100ex solid transparent;
border-right: 100ex solid transparent;
border-bottom: 70ex solid;
top: 3ex; left: -105ex;
transform: rotate(-70deg);
}
</style>