mostafatalebi Posted March 14, 2013 Share Posted March 14, 2013 Hello everybody I have written a CSS style which works in chrome, safari and firefox but not its direction property does not work in Opera. what's the problem? Here is the code: float:left; background-color:#666; width: 520px; height: auto; margin-left: 5px; line-height: 30px; background: linear-gradient(to bottom, #333, #0F0F0F); /* for firefox 3.6+ */ background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#0F0F0F)); background: -moz-linear-gradient(top, #333, #0F0F0F); /* for firefox 3.6+ */ -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; background-position: top; border: solid 2px #999; margin-bottom: 15px; font-family: Tahoma, Geneva, sans-serif; color: #F60; font-weight: bold; direction: rtl; /* =====================>>>>>>>>>>>>>>>>>>>>>>> HERE IS THE ISSUE */ text-align: justify; padding-top: 15px; padding-right: 15px; padding-bottom: 150px; padding-left: 15px; Link to comment https://forums.phpfreaks.com/topic/275648-css-direction-not-working-in-opera/ Share on other sites More sharing options...
mostafatalebi Posted March 14, 2013 Author Share Posted March 14, 2013 I found the problem. It was solved when i explicitly declared border properties. 2px red solid Link to comment https://forums.phpfreaks.com/topic/275648-css-direction-not-working-in-opera/#findComment-1418585 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.