Advertisement
lemansky

Untitled

Mar 30th, 2022
677
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.74 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>
  4.             Наследяване
  5.         </title>
  6.         <meta charset="UTF-8"/>
  7.         <style>
  8.             header, section{
  9.                 display:block; /* the element is wide as its parent or the screen width */
  10.                 border:solid 3px black; /* black border with 3px thickness */
  11.             }
  12.             header div a{   /* target all links "a" inside divs, which are inside header */
  13.                 text-decoration: none; /* remove underline*/
  14.                 font-size:18px; /* text size */
  15.                 color:#0CBF0F; /* text color */
  16.             }
  17.             a:hover{ /* pseudoclass, this rule will apply only when the user is hovering over links */
  18.                 background:black; /* background color */
  19.                 color:white; /* text color */
  20.             }
  21.             section a.link-style{
  22.                 background: #3498db; /* background color */
  23.                 border-radius: 28px; /* rounded edges  */
  24.                 font-family: Arial; /* text type */
  25.                 color: #ffffff; /* text color */
  26.                 font-size: 20px; /* text size */
  27.                 padding: 10px 20px 10px 20px; /* the extra empty space inside an element going from top, right, bottom, left */
  28.                 text-decoration: none; /* remove underline */
  29.                 margin:10px 15px 20px 25px; /* the extra empty space around the element going from top, right, bottom, left */
  30.                 display:inline-block; /* the element does not take a whole row or width of its parent, but enough for its size*/
  31.             }
  32.             section a.link-style:hover{
  33.                 background: #3cb0fd; /* background color */
  34.             }
  35.         </style>
  36.     </head>
  37.     <body>
  38.         <header>
  39.             <div>
  40.                 <a href="#"> This is a link </a>
  41.             </div>
  42.             <a href="#"> This is another link </a>
  43.         </header>
  44.         <section>
  45.             <a href="#" class="link-style"> Click here </a>
  46.             <div class="link-style">
  47.                 This is a div
  48.             </div>
  49.         </section>
  50.         <a href="#" class="link-style"> This is a link </a>
  51.     </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement