我已經寫了一些代碼來使文字發光,但文字不僅會在光標位於文字上方時發光,而且當光標位於文字延伸的水平區域上方時也會發光。爲什麼會發生這種情況,只有當光標位於文本上時,我該如何才能使其發光?即使光標不在文字上,文字也會發光
<!DOCTYPE html>
<html>
<head>
<title>tTEXT</title>
</head>
<link rel="stylesheet" type="text/css" href="styles.css"/>
<body>
<style>
@font-face
{
font-family: ralewaythin;
src: url('Cantarell-Regular.ttf')
}
.backgroundimage
{
background-position: center;
}
.text-glow-hover-with-delay
{
color: black;
-webkit-transition: text-shadow 0.15s;
}
.text-glow-hover-with-delay:hover
{
text-shadow: 0 0 10px #4682b4;
}
.head
{
font-family: ralewaythin;
color: black;
font-size: 75px;
-webkit-text-stroke: 1px;
}
</style>
<div class="text-glow-hover-with-delay">
<div class="head">TEXT</div>
</div>
</body>
</html>
感謝您將它標記爲答案!祝你網站好運! – Matt