gpt4 book ai didi

html - IOS不正确的边框宽度渲染

转载 作者:行者123 更新时间:2023-11-28 04:04:11 24 4
gpt4 key购买 nike

我将这些输入框的边框宽度设置为1px。然而,出于某种原因,在 ios 上,顶部边框看起来比它应该的要大(无论浏览器如何)。

(border on ios)

在任何其他类型的设备上,边框看起来都不错。

(border on non-ios device )

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,minimum-scale=1">
<title>ios rendering test</title>
</head>
<body>
<style media="screen">
input {
border: 1px solid #ccc;
height: 100px;
margin: 5%;
}
</style>
<form class="" action="index.html" method="post">
<input type="text" name="" value="firstname">
<input type="text" name="" value="lastname">
<input type="text" name="" value="email">
<input type="submit" name="submit" value="subscribe">
</form>
</body>
</html>

最佳答案

由于目标是 iOS input,因此您需要使用 -webkit-appearance: none; 删除默认样式/p>

你的代码

input {
-webkit-appearance: none; /* Add this */
border: 1px solid #ccc;
height: 100px;
margin: 5%;
}

Here is an article以及关于 appearance 标签的更多信息。

关于html - IOS不正确的边框宽度渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43035062/

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