Advertisement
Iire

Meta is dissapointed

Sep 25th, 2011
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>A blah</title>
  5. <style type="text/css">
  6.  
  7. .commaseparated, .newlineseparated {
  8.   display:block;
  9.   padding:6px;
  10.   margin:4px;
  11.   width:130px;
  12. }
  13.  
  14. .commaseparated {
  15.   background-color:#DADADA;
  16.   border:3px double #FFF;
  17. }
  18.  
  19. .newlineseparated {
  20.   background-color:#BABABA;
  21.   border:3px double #FFF;
  22. }
  23.  
  24. .commasepatated::selection, .commasepatated::-moz-selection {
  25.   background-color:#8F0;
  26.   color:#070;
  27. }
  28.  
  29. .newlineseparated::selection {
  30.   background-color:#8F0;
  31.   color:#070;
  32. }
  33.  
  34. .newlineseparated::-moz-selection {
  35.   background-color:#8F0;
  36.   color:#070;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. When <b>::selection</b> and <b>::-moz-selection</b> are separated by <b>commas</b> [applied to the same group of styles]: <div class='commaseparated'>Highlight me!</div>
  42. <br>
  43. When <b>::selection</b> and <b>::-moz-selection</b> are separated by <b>new lines</b> [applied to their own groups of styles]: <div class='newlineseparated'>Highlight me!</div>
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement