Jump to content
  • 0

Применение нескольких классов к одному элементу


Subcomandante.A
 Share

Question

Друзья, подскажите, пожалуйста, почему к элементу не применяется один из заданных классов.

HTML

<table border="0" cellpadding="15" cellspacing="15" class="bonusChoice">
<tr>
<td>
<div class="accountForm">
<div class="input">
<div class="submit">
<input type="submit" value="Select">
</div>
</div>
</div>
</td>
</tr>
</table>

CSS

.body.ar .bonusChoice .accountForm .input {
float: right;
height: 1%;
overflow: hidden;
width: auto;
display:inline;
line-height: 15px;
}

При арабской раскладке не применяется класс bonusChoice. Соответственно применяется следующий стиль:

body.ar .accountForm .input {
float: left;
height: 1%;
overflow: hidden;
width: 54%;
display:inline;
line-height: 15px;
}

Возможно, я что-то неверно прописал в style.css. Скорее всего так и есть, иначе бы все работало :)

Заранее спасибо.

upd

Случайно опубликовал недописанный пост - без стилей.

Edited by Subcomandante.A
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

1) Вот это чё такое? body.ar

2) Давай лучше ссылку на тестовую страницу.

1) Это арабский дирекшн для всего, что находится между тегами <body>

HTML

<body{% if LANGUAGE_CODE == "ar" %} class="ar"{% endif %}>

CSS

body.ar {
direction: rtl;
etc...
}

Соответственно, когда пользователь переключает язык на арабский, игнорируется класс .bonusChoice, и мы имеем совсем не то выравнивание {float} для кнопки, которое нужно:

.body.ar .bonusChoice .accountForm .input {
float: right;
height: 1%;
overflow: hidden;
width: auto;
display:inline;
line-height: 15px;
}

2)Редактирую страницу на отладочной версии сайта, на основной версии ее еще нет. Пароли к демо-версии даются только разработчикам :(

Edited by Subcomandante.A
Link to comment
Share on other sites

  • 0

Спасибо всем, кто откликнулся - уже разобрался, в чем ошибся. Как обычно, все дело в криворукости - прописал body.ar .bonusChoice .accountForm .input с точкой перед body.

Edited by Subcomandante.A
Link to comment
Share on other sites

  • 0

Спасибо всем, кто откликнулся - уже разобрался, в чем ошибся. Как обычно, все дело в криворукости - прописал body.ar .bonusChoice .accountForm .input с точкой перед body.

Воот, другое дело ;)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy