Jump to content

CSS direction not working in Opera


mostafatalebi

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.