菜鸟教程小白 发表于 2022-12-12 14:39:01

html - 为什么iOS上电话号码的字体颜色是蓝色的?


                                            <p><p>有谁知道为什么<strong>iPad iOS 11.0、iPhone 7 iOS 11.0、iPhone X iOS 11.0.3</strong>上的字体颜色是蓝色的?我尝试以多种方式更改颜色,但根本不起作用,我的电子邮件代码中什至没有任何蓝色,因此必须计算它!</p>

<p></p><div class="snippet"data-lang="js"data-hide="false"data-console="true"data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-html lang-html prettyprint-override"><code>&lt;table width=&#34;100%&#34; border=&#34;0&#34; cellpadding=&#34;0&#34; cellspacing=&#34;0&#34; align=&#34;right&#34; style=&#34;background: #333d47; text-align: left; color: #FFFFFF;&#34;&gt;
&lt;tr&gt;
    &lt;td style=&#34;font-family:Arial, sans-serif;font-size: 12px; color: #FFFFFF; margin:0; padding:20px; font-weight: 300 !important;&#34;&gt;Contact us now: &lt;span editable=&#34;true&#34; style=&#34;color: #FFFFFF;&#34;&gt;+1(555) 555-555&lt;/span&gt;
    &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;</code></pre>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>iOS 为我们提供了 <code>x-apple-data-detectors</code> 来解决 Apple Mail 干预自动检测电话号码和地址并使其链接的问题。在你的 <code>&lt;style&gt;</code> 标签中放置这样的东西应该可以解决问题:</p>

<pre><code>* {
    border-bottom: 0 !important;
    cursor: default !important;
    color: inherit !important;
    text-decoration: none !important;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于html - 为什么iOS上电话号码的字体颜色是蓝色的?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/49568194/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/49568194/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: html - 为什么iOS上电话号码的字体颜色是蓝色的?