gpt4 book ai didi

html - 使用 IE 6、7 和 8 的 HTML/CSS 选择一个类和另一个类?

转载 作者:行者123 更新时间:2023-11-28 10:24:49 24 4
gpt4 key购买 nike

我想做的是制作一个清晰的 div 框以跨浏览器(Mozilla、Chrome、Opera、IE 9+、Safari)+ IE 6、7 和 8 工作,如下图所示:

http://s29.postimg.org/8hp8m56gm/5_21_2014_12_06_38_AM.jpg

我让它可以在除 IE 6、7 和 8 之外的所有其他浏览器中运行。

为了解决这个问题,我利用了@potench 的回复:How does one target IE7 and IE8 with valid CSS? .这非常有用,但是我无法让它与 IE 6、7、8 一起使用,因为@potench 的建议只描述了如何将它与选择器一起使用(在大多数情况下这很有意义)。但是,我的情况不同。我的逻辑告诉我,因为我正在尝试为 IE 6、7 和 8 创建一个清晰的 div 框,所以我需要用一个类来完成。简而言之,使用一个类来选择(sp?)另一个类。我试图做的是使用类 ie8 来选择 transboxBody,但这没有用:

.ie8 transboxBody{
background-color: #fff;
filter:alpha(opacity=60);
}

取而代之的是,我尝试在我的 HTML 中选择第二个 div 元素:

div:second-child  {
background-color: #fff;
filter:alpha(opacity=60);
}

这应该选择这个 div 元素:

<div class="transboxHead">
<img src="../_images/image">
<h2>Header text</h2>
</div>

但是,这不起作用,因为它影响了 Mozilla、Chrome、Opera、IE 9+ 和 Safari 中的 div 框颜色。

总而言之:有没有更简单的方法来做到这一点?我可以选择一个类(class)和另一个类(class)吗?如果没有,解决这个问题的最佳方法是什么?

请注意,我对出于学习目的使用 Jquery 不感兴趣...我想让它尽可能使用干净的代码,并且拥有 Jquery 函数会增加更多的体积。

这是我的代码...

CSS:

/*Zeroes out all margins*/
* {
margin:0;
padding:0;
}

/*Center align website*/
#wrapper {
width:47em;
margin:0 auto;
text-align:left;
}

body {
text-align:center; /*For IE6*/
}

/*Background image for website*/
html, body {
background-image:url("../_images/Background.jpg");
}

/*Top transparent box*/
.transboxHead {
background-color:rgba(255,255,255, 0.6);
opacity: 0.6;
border-radius: 0 0 25px 25px;
padding: 1em;
}

/*Body transparent box*/
.transboxBody {
margin:30px 0px;
background-color:rgba(255,255,255, 0.3);
border-radius:25px;
padding: 1em;
}

.ie6 transboxBody{
background-color: #fff;
filter:alpha(opacity=60);
}

/*Registartion form styling*/
.logregform li {
margin: 10px;
/*I added the width and height seen below to try to get it work in Chrome*/
padding:top;
width:220px;
height:30px;
}

/*Center fields*/
.contact_form {
width:240px;
overflow:hidden;
padding:10px;
}

/*Contact form styling*/
.contact_form ul {
list-style-type:none;
list-style-position:outside;
margin:0px;
padding:0px;
}

HTML:

<!--[if lt IE 7 ]> <html lang="en" class="ie6">    <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->

<head>
<meta http-equiv="X-UA-Compatible" content="IE=8">
<link type="text/css" rel="stylesheet" href="../_css/stylesheet.css"/>
</head>

<div id="wrapper">
<div class="transboxHead">
<img src="../_images/image">
<h2>Header text</h2>
</div>

<div class="centered transboxBody">
<div class="logregform">
<form class="contact_form">
<ul>
<li>

</li>
<li>

</li>
<li>

</li>
<li>

</li>
<li>

</li>
<li>

</li>
</ul>
</form>
</div>
</div>

最佳答案

您的代码中存在语法错误。你错过了 ”。”在类里面。

.ie8 transboxBody{
background-color: #fff;
filter:alpha(opacity=60);
}

上面的css类应该这样写

.ie8 .transboxBody{
background-color: #fff;
filter:alpha(opacity=60);
}

关于html - 使用 IE 6、7 和 8 的 HTML/CSS 选择一个类和另一个类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23773929/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com