Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css Internet explorer水平尾端导航位置不正确_Css_Internet Explorer - Fatal编程技术网

Css Internet explorer水平尾端导航位置不正确

Css Internet explorer水平尾端导航位置不正确,css,internet-explorer,Css,Internet Explorer,在Firefox/Chrome/Safari中,可以单击整个图像,但在Internet Explorer中,只能单击图像右侧 Javascript <script type="text/javascript"> $().ready(function() { $(".slider1").codaSlider( {dynamicArrows: false, dynamicTabs: false} ); $(".slider1 .coda-nav-right-w

在Firefox/Chrome/Safari中,可以单击整个图像,但在Internet Explorer中,只能单击图像右侧

Javascript

<script type="text/javascript">
  $().ready(function() {
    $(".slider1").codaSlider( {dynamicArrows: false, dynamicTabs: false} );        $(".slider1 .coda-nav-right-wrapper").mouseover(function() {
      $(".nav1").css("display","block");
    });
    $(".slider1 .coda-nav-right-wrapper").mouseout(function() {
      $(".nav1").css("display", "none");
    });
    $("#coda-nav-right-1 > a > .coda-nav-right-wrapper").mouseover(function() {
      $(".caption1").css("display", "inline");
    });         

    $("#coda-nav-right-1 > a > .coda-nav-right-wrapper").mouseout(function() {
      $(".caption1").css("display", "none");
    });
  });
</script>

在内联元素
中有一个块级元素
。这在语义上对IE无效。因此,给出一个
display:block或<代码>浮动:左侧
对于
标记,修复它

#content .coda-nav-right-wrapper {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 40;
  width: 900px;
  height: 450px;
  cursor: pointer;
}