Advertisement
loveberry

bold italic on hover

May 20th, 2023 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <style>
  2. .boldtal, .boldtal a {
  3. transition: .2s ease;
  4. font-size:2em;
  5. }
  6. .boldtal:hover, .boldtal a:hover {
  7. font-weight:bold;
  8. font-style:italic;
  9. }
  10. </style>
  11.  
  12. <div class="boldtal">bold italic on hover</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement