Jump to content
  • 0

Отмена стиля


Исильдур
 Share

Question

На странице имеется код, с тегом <label> в десяти местах.

Для данного тега прописан стиль, мне необходимо в одном из десяти тегов <label>

отменить заданный стиль...

Подскажите как удобней всего это сделать?

Может есть какой нибудь атрибут, который отменяет все прикрепленные стили к одному элементу...

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Возможно поможет такое решение в примере 2 варианта один из них обёртка предложен выше, а второй вариант дописываем ещё 1 класс и к нему задаем необходимый стиль:

<!DOCTYPE html> 
<html>
<head>
<meta charset="UTF-8" />
<title>Test label</title>

</head><body>

<style>
label {
color:green; // дефолтный класс для всех label - для примера
}
.xd {
font-style:italic; // дефолтный класс для примера
}
.add {
color:red; // для варианта с добавленнием класса
}
span label {
color:blue; // для варианта с обёрткой
}
</style>

<form action="">
<p><b>Lorem ipsum dolor sit amet...</b></p>
<p>
<input type="checkbox" id="check1"><label class="xd" for="check1">1 лэйбл</label><Br>
<input type="checkbox" id="check2"><span><label class="xd" for="check2">2 лэйбл - вариант с обёрткой</label></span><Br>
<input type="checkbox" id="check3"><label class="xd" for="check3">3 лэйбл</label><Br>
<input type="checkbox" id="check4"><label class="xd" for="check4">4 лэйбл</label><Br>
<input type="checkbox" id="check5"><label class="xd" for="check5">5 лэйбл</label><Br>
<input type="checkbox" id="check6"><label class="xd add" for="check6">6 лэйбл - вариант с добавлением класса</label><Br>
<input type="checkbox" id="check7"><label class="xd add" for="check7">7 лэйбл - вариант с добавлением класса</label>
</p>
</form>

</body>
</html>

Edited by Vzor
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