Advertisement
artemsemkin

Asli: customization of <q> tag

Sep 18th, 2024 (edited)
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.25 KB | None | 0 0
  1. q:before {
  2.   content: '(\00a0\00a0\00a0\00a0';
  3. }
  4. q:after {
  5.   content: '\00a0\00a0\00a0\00a0)';
  6. }
  7.  
  8. @media screen and (max-width: 767px) {
  9.   q:before {
  10.     content: '(\00a0\00a0\00a0';
  11.   }
  12.   q:after {
  13.     content: '\00a0\00a0\00a0)';
  14.   }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement