gpt4 book ai didi

html - CSS3 变换 : scaling results in translation?

转载 作者:搜寻专家 更新时间:2023-10-31 23:26:02 25 4
gpt4 key购买 nike

我有以下简单的 HTML 代码:

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
body {
padding: 30px;
}
a {
display: block;
}
a:hover {
transform: scale(2);
transition: all 4s;
}
</style>
</head>
<body>

<a href=#>Link</a>

</body>
</html>

Link 应该在其中缩放。但是,它向左移动。有什么问题?

最佳答案

body {
padding:30px;
}
a {
display: inline-block;
transition: all 4s;
}
a:hover {
transform: scale(2);
}
<a href=#>Link</a>

你应该使用 display:inline-block 来让它工作。如果这是您要查找的内容,请+1。

关于html - CSS3 变换 : scaling results in translation?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31018770/

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