显示没有不适合转换

时间:2013-02-08 14:51:20

标签: html css css3 media-queries css-transitions

我使用媒体查询来隐藏iphone图像并显示桌面图像..... 但他的iphone图像没有出现.... 你能告诉我什么共鸣

http://jsfiddle.net/QYvrt/27/

<div class="desktopContactImage" data-caption="&lt;a style='margin-left: 92px; font-size: 18px; color: grey;' href='http://www.w3schools.com/' &gt;Create&lt;/a&gt; &lt;div&gt; &lt;a style='margin-left: 92px; font-size: 18px; color: grey;' &gt;View/Edit&lt;/a&gt; &lt;/div&gt; &lt;a style='margin-left: 92px; font-size: 18px; color: grey;' &gt;Labels&lt;/a&gt;" data-image="http://www.defie.co/designerImages/inventoryControl.png">desktopImage</div>

                        <div class="iphoneContactImage" data-caption="&lt;a style='margin-left: 92px; font-size: 18px; color: grey;' href='http://www.w3schools.com/' &gt;Create&lt;/a&gt; &lt;div&gt; &lt;a style='margin-left: 92px; font-size: 18px; color: grey;' &gt;View/Edit&lt;/a&gt; &lt;/div&gt; &lt;a style='margin-left: 92px; font-size: 18px; color: grey;' &gt;Labels&lt;/a&gt;" data-image="http://intra.defie.co/images/cubes/demoImage.png">iphoneImage</div>


@media (max-width: 767px) {

#rightSlider{
    border: 1px solid red;
}

#rightSlider{
            display:none !important;
          }
#rightSlider{ 
            display:inherit !important;
          }

.desktopContactImage{

            display:none !important;
          }

.iphoneContactImage{
            display:inherit !important;
            border: 1px solid red;
          }



}

1 个答案:

答案 0 :(得分:1)

需要考虑哪些问题可能有所帮助:

  1. 您的HTML标记之前没有声明doctype,例如

  2. 尝试编写媒体查询代码,例如“@media screen and(max-width:767px)”

  3. HTML标签和HEAD标签之间有很多脚本标签 - 它们应该在HEAd标签内或BODY标签内。

  4. 这是你在那里进行的一些JavaScript。当它为真实用户制作它时,我建议缩小并压缩它们。