Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. select {
  6. height: 42px;
  7. }
  8.  
  9. .sel optgroup {
  10. font-weight: bold;
  11. color: red;
  12. }
  13.  
  14. .sel option {
  15. color: black;
  16.  
  17. }
  18. </style>
  19.  
  20. </head>
  21.  
  22. <body>
  23.  
  24. <select class="sel">
  25. <optgroup class="group" label="Swedish Cars">
  26. <option value="volvo">Volvo</option>
  27. <option value="saab">Saab</option>
  28. </optgroup>
  29. <optgroup label="German Cars">
  30. <option value="mercedes">Mercedes</option>
  31. <option value="audi">Audi</option>
  32. </optgroup>
  33. </select>
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement