Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. label[for="value-here"]{
  2. /* styles */
  3. }
  4.  
  5. label[for="for_value"] {
  6. /* CSS Properties */
  7. }
  8.  
  9. <label class="new-label"></label>
  10.  
  11. .new-label {
  12. /* Styles */
  13. }
  14.  
  15. <label class="my_label" id="my_label_id" for="rn_Select"><span></span></label>
  16.  
  17. .my_label{
  18. /*style goes here*/
  19. }
  20.  
  21. #my_label_id{
  22. /*style goes here*/
  23. }
  24.  
  25. input#your_input_id + label{
  26. /*css rules*/
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement