- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的主页上,我有带有悬停效果的图像,文本显示为带有 P 标签的悬停样式,所以一切正常。
然而,在我的关于页面上,我试图添加文本并使用 P 将其拆分,但是因为我已经为主页设置了 P 样式,关于页面中的 P 元素正在采用主页的样式。
我尝试在 about.html 中为 P 添加一个类,但没有成功。
有什么想法可以让 P 标签具有 2 种不同类型的样式吗?
我什至无法显示 about.html 上的文本。
这是我的 index.html 代码
p {
background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
color: white;
font-family: helvetica, arial, sans-serif;
font-size: 18px;
height: 100%;
left: 0;
line-height: 1.5em;
padding-left: 10px;
padding-right: 5px;
padding-top: 15%;
position: absolute;
top: 100%;
transition: all 1s ease 0s;
width: 97%;
}
p .heading {
color: #FFD829;
display: block;
font-size: 24px;
padding-bottom: 15px;
}
p a {
text-decoration: none;
color: #FFD829;
}
p img {
padding-left: 40px;
padding-top: 20px;
}
p iframe {
padding-left: 10%;
}
最佳答案
你有两个意思去做你期望的事情:如果你想修改几个具有相同设计的 p 标签,你可以为所有这些 p 标签添加一个类,然后在样式标签或外部样式表中设计不同的标签。
在您的 about.html 中作为示例
<p class="newStyle"></p>
在你的 CSS 中
.newStyle {
//your attributes
}
如果你只想要一个 p 标签的另一种设计,你可以在上面使用 id 属性,并且设计将只应用于这个 p 标签(注意 id 在你的页面中必须是唯一的)
html
<p id="newStyle"></p>
样式:
#newStyle {
//your attributes
}
If your are using a style tag inside your html you can validate your page with a W3C validator to make sure you have no issue in it : https://validator.w3.org/#validate_by_input
if you are using an external stylesheet be sure to include it in your page with the link tag :
It exist also a css validator you can used to check you have no make mistake in it : https://jigsaw.w3.org/css-validator/
关于html - p 标签已经为一个页面设置了样式,但我想为另一页设置不同的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37899853/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!