CSS / HTML代码不起作用,字体未应用

时间:2013-01-10 03:33:01

标签: html css html5 css3 input

当我尝试运行此CSS / HTML代码(这是在webkit浏览器中)时,它不起作用。输入框中的字体没有应用Lato字体:

<html>
    <head>
        <link href='http://fonts.googleapis.com/css?family=Lato:300' rel='stylesheet'
        type='text/css'>
        <title>Dumb Search</title>
        <meta name="apple-mobile-web-app-capable" content="yes"
        />
        <link rel="apple-touch-icon-precomposed" href="../ds.png" />
        <meta name="viewport" content="width = device-width, user-scalable = no, initial-scale = 0.8">
        <style>
            .box {
                padding:20px;
                width:290px;
                box-shadow:0px 1px 3px -1px #c3c3c3;
                background-color:white;
                color:gray;
                font-family:Lato;
                text-align:left;
            }

        </style>
    </head>
    <body bgcolor="#f5f5f5">
        <center>
            <br>
            <div style="position:relative;width:342px;">
                <form action="searchcompleted.php" style="display:inline;">
                    <input name="q" value="Search, or tap the camera" class="box" style="border:0;outline:0;width:340px;color:#A0A0A0;padding-top:15px;padding-bottom:15px;"
                    onfocus="if (this.value == 'Search, or tap the camera') {this.value = '';}"
                    onblur="if (this.value == '') {this.value = 'Search, or tap the camera';}">
                </form>
                <img src="http://i45.tinypic.com/30vkbhj.jpg" style="position:absolute;top:0px;left:278px;opacity:0.4;height:30px;padding:15px;padding-right:17px;"
                onclick='void(0);document.getElementById("thisone").click();'>
                <form style="display:inline;" action="http://www.dumbsearch.com/dumbocr/post.php"
                method="post" enctype="multipart/form-data" id="sniff">
                    <input accept="image/*" type="file" style="display:none;" id="thisone"
                    onchange='document.getElementById("scan").style.display="block";' name="photo">
                    <div onclick='void(0);document.getElementById("sniff").submit();' style="position:absolute;top:65px;left:195px;background-color:white;border:0;box-shadow: 0px 1px 3px -1px #C3C3C3;padding:20px;color:#0EBFE9;padidng-left:25px;padding-right:25px;z-index:4;display:none;font-family:Lato;"
                    id="scan">Touch to scan</div>
                </form>
            </div>
            <br>
            <div class="box"></div>
    </body>

</html>

非常感谢你!提前!

修改:点击此处:http://pastehtml.com/view/cokmdi9yg.html

4 个答案:

答案 0 :(得分:3)

在字体系列中试试

 @font-family
{
font-family: FirstFont;
src: url('.ttf');
} 

答案 1 :(得分:0)

问题显然不是关于字体,特别是关于Google字体,而是关于字体大小。浏览器通常在输入框中应用缩小的字体大小,类似于复制文本大小的90%。如果您使用Chrome中的开发人员工具(F12)检查页面,则可以看到应用于该元素的其中一个声明为font: -webkit-small-control。这会设置字体系列和字体大小,现在只覆盖字体系列部分。

例如,要使输入框中的文本与文档正文中的文本相同(或者,正式地,与周围元素中的相同),只需添加以下CSS规则:

input { font-size: 100%; }

答案 2 :(得分:-1)

键入font family声明,如下所示:font-family: 'Lato';必须在引号中。

答案 3 :(得分:-1)

字体系列'lato'在CSS中不可用,所以请使用此代码导入'Lato'。下载Lato的ttf和eot文件。

@font-face
{
font-family: FirstFont;
src: url('.ttf'),
     url('.eot'); 
}