gpt4 book ai didi

css - 无法设置 h1 标签及其内容的样式

转载 作者:行者123 更新时间:2023-11-28 17:15:30 33 4
gpt4 key购买 nike

 <% provide(:title, @user.name) %>
<div class="row">
<aside class="col-md-4">
<section class="user_info">
<h1>
<%= gravatar_for @user %>
<%= @user.name %>
</h1>
</section>
</aside>
</div>

我的 .html.erb 在上面给出如下,我试图在 h1 标签下设置 @user.name 变量的样式,但我无法这样做。当我检查元素时,我可以直接在 h1 标签下设置所有内容的样式,但尝试使用我的实际 css 文件时运气不佳。

 aside {
h1 {
font-size: 1.4em;
text-align: left;
letter-spacing: -1px;
margin-bottom: 3px;
margin-top: 0px;
}
}

最佳答案

请立即检查。

aside h1{


font-size: 1.4em;
text-align: left;
letter-spacing: -1px;
margin-bottom: 3px;
margin-top: 0px;
}
<div class="row">
<aside class="col-md-4">
<section class="user_info">
<h1>
Header
</h1>
</section>
</aside>
</div>

关于css - 无法设置 h1 标签及其内容的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44204950/

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