gpt4 book ai didi

iphone - 从 web View 中的有序列表中删除缩进

转载 作者:行者123 更新时间:2023-12-01 21:14:59 24 4
gpt4 key购买 nike

我正在 webview 中创建一个有序列表,我想从列表中删除缩进,即让列表与第一段对齐。这是HTML:

<body  style="font-family: arial""font-size:18">
<p>First paragraph.</p>
<p>
<ol style="margin-left:0px">
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
</ol>
</p>
</body>

请注意,使用 margin-left:0px ,webview 仍然将列表缩进大约 17 个点。如果我说 margin-left:-17px ,我可以让它与黑客一起工作,但我宁愿不这样做,因为它看起来更像是我在构建我的 HTML 时做错了什么。

任何人都可以看到它有什么问题吗?

更新的 HTML - 仍然不起作用:
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-family: arial;
font-size: 18px;
}
ol {
padding-left: 0px;
}
</style>
</head>
<body>
<p>Paragraph.</p>
<p>
<ol>
<li>List item 1.</li>
<li>List item 2.</li>
<li>List item 3.</li>
</ol>
</p>
</body>
</html>

我在 iPhone 3GS 上使用 iOS 5.1

最佳答案

您可以使用以下方式归档这样的样式:

ol {
list-style-type: none;
margin: 0;
padding: 0;
}

关于iphone - 从 web View 中的有序列表中删除缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12025741/

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