Text Underline Effect Archives - csshint - A designer hub https://csshint.com/tag/text-underline-effect/ Mon, 12 Oct 2020 01:20:21 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.4 Text Underline Effect On Hover https://csshint.com/text-underline-effect-hover/ Mon, 12 Oct 2020 01:20:21 +0000 http://csshint.com/?p=4077 Check out this Simple Text Underline Effect On Hover using css Designed by Misha Heesakkers. HTML [code language=”html”] <p> "Attractive things make people feel good, which in turn makes them think more</a> <a class="link-1" href="#">creatively</a>. How does that make something easier to use? Simple, by making it easier for <a class="link-2">people</a> to find solutions to […]

The post Text Underline Effect On Hover appeared first on csshint - A designer hub.

]]>
Check out this Simple Text Underline Effect On Hover using css Designed by Misha Heesakkers.

Text Underline Effect On Hover

Text Underline Effect On Hover


HTML

[code language=”html”]

<p>
"Attractive things make people feel good, which in turn makes them think more</a> <a class="link-1" href="#">creatively</a>. How does that make something easier to use? Simple, by making it easier for <a class="link-2">people</a> to find solutions to the problems they encounter." <strong>- Don Norman</strong>
</p>

[/code]

CSS / postCSS

[code language=”css”]

@use postcss-simple-vars;
@use postcss-nested;
@import ‘https://fonts.googleapis.com/css?family=Lora:400,700’;

$underlineColor: #00B388;
$underlineHeight: 5%;

* {
box-sizing: border-box;
}

html, body {
font-family: ‘Lora’, serif;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}

body {
border: 8px solid $underlineColor;
}

a {
cursor: pointer;
}

strong {
margin-top: 16px;
display: block;
font-weight: 700;
}

p {
padding: 24px;
max-width: 760px;
font-size: 22px;
font-weight: 300;
line-height: 1.9;
}

.link-1 {
position: relative;
text-decoration: none;
display: inline-block;
color: black;
padding: 0 1px;
transition: color ease 0.3s;

&::after {
content: ”;
position: absolute;
z-index: -1;
width: 100%;
height: $underlineHeight;
left: 0;
bottom: 0;
background-color: $underlineColor;
transition: all ease 0.3s;
}

&:hover {
color: white;

&::after {
height: 100%;
}
}
}

.link-2 {
position: relative;
text-decoration: none;
display: inline-block;
color: black;
padding: 0 1px;
transition: color ease 0.3s;

&::before, &::after {
content: ”;
position: absolute;
background-color: $underlineColor;
z-index: -1;
height: $underlineHeight;
}

&::before {
width: 0%;
left: 0;
bottom: 0;
transition: width ease 0.4s;
}

&::after {
width: 100%;
left: 0;
bottom: 0;
transition: all ease 0.6s;
}

&:hover {

&::before {
width: 100%;
}

&::after {
left: 100%;
width: 0%;
transition: all ease 0.2s;
}
}

}

[/code]

css underline animation

The post Text Underline Effect On Hover appeared first on csshint - A designer hub.

]]>