gpt4 book ai didi

javascript - 如何在翻转时更改边框颜色?

转载 作者:太空宇宙 更新时间:2023-11-03 21:55:42 25 4
gpt4 key购买 nike

我正在编写一个包含文本框的网页。我想通过更改边框颜色在鼠标悬停在文本上时突出显示文本,但它一直不起作用。

这是我的html代码

    <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

<title>main</title>
<meta name="description" content="" />
<meta name="author" content="Zolani" />

<meta name="viewport" content="width=device-width; initial-scale=1.0" />

<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<title>canvas</title>
<meta name="description" content="" />
<meta name="author" content="Zolani" />
<link rel="stylesheet" type="text/css" href="canvas.css"/>
<script type="application/javascript" src="canvas.js"></script>
</head>

<body>
<div class="title">
Linear Algebra.
</div>
<div>
<div class="box" onmouseover="light()">
<h1 class="boxtitle"> Matrix </h1>

<p>
Here are some matrixes. They're pretty cool, to
be honest thing!
</p>
</div>
<div class ="box" onmouseover="light()">
<h1 class="boxtitle"> Subspaces </h1>

<p>
Example
</p>
</div>
</div>

</body>

我的CSS代码

body { background: #AC00BF }

.title {
position: absolute;
left: 800px;
top: 20px;
color: black;
font-size: 4.8em;
font-family: sans-serif;
}

.box {
color: white;
font-family: sans-serif;
font-size: 12px;
background: black;
border-style: solid;
border-width: 4px;
border-color: black;
margin: 2cm 2cm 2cm 2cm;
max-width: 300px;
max-height: 200px;
}

.boxtitle {
font-size: 18px;
font-family: Georgia;
}

我想在滚动时将 div 的边框更改为白色。我一直在尝试使用 box: hover 的变体,但没有用。我还使用了 a.box: hover 并实现了标签,但 div 显示为链接。

如何在悬停时将此 div 的边框颜色更改为白色?

最佳答案

.box 上使用 :hover 为我完成了工作:

.box:hover{
border-color: white
}

您必须注意顺序(以下示例将不起作用):

.box {
border-color: black
}

.box:hover{
border-color: white
}

Demo

关于javascript - 如何在翻转时更改边框颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13997207/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com