Link
Какво е линк
Със линкове се придвижваме между уеб страници
#link-example:link{
color: #0094aa;
}
#link-example:visited{
color: green;
}
#link-example:hover{
color: cyan;
}
#link-example:active{
color: yellow;
}
:link - Стилът на линка.
:visited - Стилът ако вече сме кликнали линка
:hover - Стилът когато курсорът е върху линка
:active - Стилът при натискане на линка
Button Link
#button-link:link, #button-link:visited {
background-color: white;
color: black;
border: 2px solid green;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
#button-link:hover, #button-link:active {
background-color: green;
color: white;
}
Link editor
Red: 0
Green: 148
Blue: 170
Red: 0
Green: 148
Blue: 170
Red: 0
Green: 148
Blue: 170
Click Me!
.link{
color: #0094aa
font-familly: sans-serif
font-style: normal
font-weight: normal
font-size: 20
}
.link:hover{
color: #0094aa
}
.link:active{
color: #0094aa
}
Напреднал пример
Повече информация за проекта на Началната страница
a{
text-decoration: none;
color: #0074D9;
}
.underline{
position: relative;
}
.underline::before{
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 2px;
background-color: #0074D9;
transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) and (pointer: fine) {
.underline:hover::before{
left: 0;
right: auto;
width: 100%;
}
}