07-04-2015 Saat: 06:37
Hoveri yanlış eklemişsin :)
#sasa:hover değil, #duyurum:hover olacaktı.
#sasa:hover değil, #duyurum:hover olacaktı.
Kod:
<div id="duyurum">Hoşgeldiniz Keyifli Günler...</div>
<style>
#duyurum {
background: url(http://www.psdgraphics.com/file/colorful-triangles-background.jpg);
border: 1px dashed #ccc ;
color: #fff ;
padding: 5px ;
text-align: center ;
}
#duyurum a:link, a {
color: #fff ;
}
#weqwe {
border: 1px dashed #022338 ;
background: radial-gradient(#fff, #ccc) ;
border-bottom: #022338 solid 2px ;
color: #000 ;
padding: 4px ;
margin-bottom: 2px ;
text-align: center ;
transition: 2s all ;
}
#duyurum:hover {
border-radius: 50px ;
transition: 2s all ;
}
</style>