Jump to content
  • 0

Свои стили checkbox без id


Mary_RND
 Share

Question

Доброго времени суток.

Есть checkbox со своим стилем, я находила, как это сделать через id в input и for в label.

Можно ли сделать свой checkbox без id, а через class или js?

Вот пример моей реализации >.<

https://jsfiddle.net/u3Lxgxga/5/

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

а при чем тут ваши стили и их активность?

<label><input type="checkbox" /><span></span>Интерскол</label>
<label><input type="checkbox" /><span></span>Hitachi</label>

ни каких id и for кликаете по label ставится галочка у вложенного input

Link to comment
Share on other sites

  • 0

Так, а как сделать-то в этой структуре, чтобы у меня был свой стиль checkbox? "_"

https://jsfiddle.net/u3Lxgxga/9/ - как поменять стили правильно?

Я нашла, вот такое решение http://jsfiddle.net/Modder_/5aFaj/ , но почему-то когда делаю локально, не работает :(

Такое чувство, будто js не до конца копирую...

Edited by Mary_RND
Добавила информацию по checkbox, т.к. нашла пример
Link to comment
Share on other sites

  • 0

Сделала так стили, вроде работает ><

			.checkbox-list label {
				width: 120px;
				float: left;
				cursor: pointer;
			}
			.checkbox-list input {
				float:left;
			}
			.checkbox-list span:before { 
			   display:inline-block;
			   position:relative;
			   top:0.25em;
			   left:-2px; 
			   content:'';
			   width:24px;
			   height:24px;
			   background-image:url(../images/formelements.png);
			  
			}
			input[type="checkbox"] + span:before {
			   background-position: 0 -25px;
			}
			input[type="checkbox"]:checked + span:before {
			   background-position: 0 0;
			}

 

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