English 中文(简体)
为什么有人为我工作?
原标题:Why isn t Modernizr working for me?

I don t think modernizr likes me, can someone please tell me what i m doing wrong. I can t seem to get modernizr to work on firefox, ie etc... I m only using elements like header, footer and nav...

这是我的法典:

<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7 ]>    <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8 ]>    <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9 ]>    <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class="notie no-js"> <!--<![endif]-->
  <head>
    <title></title>
    <meta name="description" content="" />
    <link href="css/main.css" rel="stylesheet" type="text/css" /> 

    <script src="modernizr-2.0.6.min.js"></script>

    <script type="text/javascript" src="http://use.typekit.com/kmy1sfb.js"></script>
    <script type="text/javascript">try{Typekit.load();}catch(e){}</script>

  </head>

检查火焰后,我拿到所有本应但没有任何要素发挥作用的内容。

例如,如果我在大火中点击头盔,把CSS高到5000px,那么它就没有移动,那么对接线等也是正确的。

最佳回答

也许你会把新的超文本5的内容作为零件。 浏览器在违约时将任何未知内容作为线性要素( :inline),因此很难与这些内容做许多工作。

新的浏览器正在慢慢地将新的超文本5要素视作稳定,这意味着它们开始为<代码>的显示:block <<<>>>>代码>(例如要素)提供违约打字。 但是,今天市场上的大多数浏览器没有这些超额5要素的违约风格,因此,你需要提供这些内容。

在这里,CSS的一个快速样本范围是:

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

将这一特别工作组增列到你的主要事项中,应当确定你的ty忙问题。

问题回答

在我试图使用一个CDN时,我也存在同样的问题,它只是工作(我可能有错误的联系)。 我发现的测试是用的。

.borderradius body {
  background: #c00;
}

各位主讲,看一下背景是否回过来。 如果是现代化的话,它正在发挥作用。

EDIT:我还发现,必须在超文本文件上插入文字。 如建议提高页数的负荷速度,将其置于底线上,是徒劳的。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签