- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的页脚 CSS 中有一个线性渐变,顶部为红色,底部为白色。我希望渐变是显示器的宽度,左右两侧没有黑色边距。我的标题标记中有类似的代码,用于没有黑色边距的红色实线。
CSS
body { font-family: Arial; background-color: $black; width: 100%; font-size: 18px; margin:0 auto; }
footer, header { font-family: Eurostile; padding-top: 15px; margin:0 auto; .row { .row-col-img-padding { [class*="col-"] { padding-left: 0px !important; padding-right: 0px !important; } } } }
footer {
color: $gray; font-weight: bold; font-style: italic; font-size: 90%; line-height: 100%; a { color: $bluedark; }
background: red;
background: linear-gradient($red, $white);
background: -khtml-linear-gradient($red, $white);
background: -moz-linear-gradient($red, $white);
background: -ms-linear-gradient($red, $white);
background: -o-linear-gradient($red, $white);
background: -webkit-linear-gradient($red, $white);
}
header { background-color: $black; p { color: $grayLight; font-weight: bold; font-size: 100%; line-height: 100%; } }
标题中实线的 CSS,其中红线无边距地填满屏幕。
#back-red { background-color: $red; padding-bottom: 15px; }
标记
<footer class="footer">
<div class="row row-col-img-padding">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" align="center">
<ul class="list-inline">
<li><%= link_to image_tag("footer-facebook-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "Facebook"), "https://www.facebook.com/xxxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-twitter-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "Twitter"), "https://twitter.com/xxxxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-linkedin-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "LinkedIn"), "http://www.linkedin.com/company/xxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-linkedin-bernard-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :translation_hash1}"), "http://www.linkedin.com/in/xxxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-linkedin-pam-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :translation_hash2}"), "http://www.linkedin.com/in/xxxxxxx", target: '_blank' %></li>
</ul>
</div>
</div>
<div class="row row-col-img-padding">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" align="center">
<%= link_to image_tag("footer-privacypolicy-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :privacy_head1}"), privacy_path %>
<div class="footer-links">
<%= link_to "#{t :footer_link1}", locale_root_path %>
<%= link_to "#{t :footer_link3}", system_path %>
<%= link_to "#{t :footer_link4}", manage_path %>
<%= link_to "#{t :footer_link6}", clients_path %>
<%= link_to "#{t :footer_link2}", about_path %>
<%= link_to "#{t :footer_link5}", contact_path %>
<%= link_to "#{t :footer_link7}", media_path %><br>
<%= link_to "Facebook", "https://www.facebook.com/LightBeCorp", target: '_blank' %>
<%= link_to "Twitter", "https://twitter.com/lightbecorp", target: '_blank' %>
<%= link_to "LinkedIn", "http://www.linkedin.com/company/lightbe-corp", target: '_blank' %>
<%= link_to "#{t :footer_link8} xxxxxxxxxx", "http://www.linkedin.com/in/bernarddreyer", target: '_blank' %>
<%= link_to "#{t :footer_link8} xxxxxxxxxx", "http://www.linkedin.com/in/pamelacooktulsaok", target: '_blank' %><br>
<%= link_to "#{t :footer_link9}", privacy_path %>
<%= link_to_unless_current "#{t :english}", locale: "en" %>
<%= link_to_unless_current "Français", locale: "fr" %>
</div>
<p class="text-red-pad-top-10"><%= "#{t :footer2}" %> <span class="text-red">Light</span><span class="text-bluedark">Be</span> ©2010-<%= Time.now.strftime("%Y") %> - <%= "#{t :footer3}" %></p>
</div>
</div>
</footer>
header 标记
<header class="header">
<div class="row row-col-img-padding" id="pad-bottom-15">
<p class="locale-line" align="center"><span class="english-link"><%= link_to_unless_current "#{t :english}", locale: "en" %></span><%= link_to_unless_current "#{t :french}", locale: "fr" %></p>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" align="center" id="header-images">
<div class="page-class" align="center">
<ul>
<li><%= link_to image_tag("menu-home.jpg", class: "img-responsive aspect", alt: "#{t :footer_link1}"), locale_root_path %></li>
<li><%= link_to image_tag("menu-manage-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :footer_link4}"), manage_path %></li>
<li><%= link_to image_tag("menu-system-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :footer_link3}"), system_path %></li>
<li><%= link_to image_tag("menu-media-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :footer_link7}"), media_path %></li>
<li><%= link_to image_tag("menu-clients-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :footer_link6}"), clients_path %></li>
<li><%= link_to image_tag("menu-about-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :footer_link2}"), about_path %></li>
<li><%= link_to image_tag("menu-contact-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :footer_link5}"), contact_path %></li>
</ul>
</div>
</div>
</div>
<div class="row row-col-img-padding" id="back-red">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" align="center">
<h1><%= @page_title %></h1>
<% if params[:action] == "system" && I18n.locale.to_s == "fr" %>
<% else %>
<p><%= @page_abstract1 %></p>
<p><%= @page_abstract2 %></p>
<p><%= @page_abstract3 %></p>
<p><%= @page_abstract4 %></p>
<p><%= @page_abstract5 %></p>
<% end %>
<p><%= @page_abstract6 %></p>
<% if params[:action] == "system" && I18n.locale.to_s == "fr" %>
<% else %>
<p><%= @page_abstract7 %></p>
<% end %>
</div>
</div>
</header>
Ruby on Rails application.html.erb
<body>
<div class="container-fluid">
<%= render 'layouts/header' %> <!-- update app/views/layouts/_systemmessage.html.erb when you need to reboot the server -->
<%= render 'layouts/systemmessage' %>
<% flash.each do |key, value| %>
<%= content_tag(:div, value, class: "alert alert-#{key}") %>
<% end %>
<%= yield %>
<%= render 'layouts/contact_footer' %>
<%= render 'layouts/footer' %>
</div>
<%= javascript_include_tag "application" %>
<%= debug(params) if Rails.env.development? %>
</body>
下图显示了我的 CSS 在 500 像素和 320 像素宽度下的工作方式。链接和图像使用 CSS .footer-links。它们扩散到屏幕边缘,但渐变没有。
下面的 CSS
.footer-links { width: 1024px; padding-top: 10px; a { padding-left: 5px; padding-right: 5px; } }
@media screen and (max-width: 1024px) { body, footer, header, .box-message, .footer-links, .page-class, .red-line-1px { max-width: 100%; } }
由于 header 和 footer 在 body 内,我认为我的问题出在渐变宽度上。我看过许多与线性渐变和宽度相关的帖子,但我找不到任何内容来准确解释我需要如何更改我的 CSS 才能使其正常工作。
最佳答案
Bootstrap .container-fluid
规则看起来像这样
{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
所以对于你的 footer
工作,你可以这样做,主要的变化是添加一个包装器 <div class="row">
然后删除 row
从类 <div class="row-col-img-padding">
, 然后在包装器上设置渐变
footer
的标记
<footer class="footer">
<div class="row">
<div class="row-col-img-padding">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" align="center">
<ul class="list-inline">
<li><%= link_to image_tag("footer-facebook-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "Facebook"), "https://www.facebook.com/xxxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-twitter-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "Twitter"), "https://twitter.com/xxxxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-linkedin-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "LinkedIn"), "http://www.linkedin.com/company/xxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-linkedin-bernard-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :translation_hash1}"), "http://www.linkedin.com/in/xxxxxxx", target: '_blank' %></li>
<li><%= link_to image_tag("footer-linkedin-pam-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :translation_hash2}"), "http://www.linkedin.com/in/xxxxxxx", target: '_blank' %></li>
</ul>
</div>
</div>
<div class="row-col-img-padding">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" align="center">
<%= link_to image_tag("footer-privacypolicy-#{I18n.locale}.jpg", class: "img-responsive aspect", alt: "#{t :privacy_head1}"), privacy_path %>
<div class="footer-links">
<%= link_to "#{t :footer_link1}", locale_root_path %>
<%= link_to "#{t :footer_link3}", system_path %>
<%= link_to "#{t :footer_link4}", manage_path %>
<%= link_to "#{t :footer_link6}", clients_path %>
<%= link_to "#{t :footer_link2}", about_path %>
<%= link_to "#{t :footer_link5}", contact_path %>
<%= link_to "#{t :footer_link7}", media_path %><br>
<%= link_to "Facebook", "https://www.facebook.com/LightBeCorp", target: '_blank' %>
<%= link_to "Twitter", "https://twitter.com/lightbecorp", target: '_blank' %>
<%= link_to "LinkedIn", "http://www.linkedin.com/company/lightbe-corp", target: '_blank' %>
<%= link_to "#{t :footer_link8} xxxxxxxxxx", "http://www.linkedin.com/in/bernarddreyer", target: '_blank' %>
<%= link_to "#{t :footer_link8} xxxxxxxxxx", "http://www.linkedin.com/in/pamelacooktulsaok", target: '_blank' %><br>
<%= link_to "#{t :footer_link9}", privacy_path %>
<%= link_to_unless_current "#{t :english}", locale: "en" %>
<%= link_to_unless_current "Français", locale: "fr" %>
</div>
<p class="text-red-pad-top-10"><%= "#{t :footer2}" %> <span class="text-red">Light</span><span class="text-bluedark">Be</span> ©2010-<%= Time.now.strftime("%Y") %> - <%= "#{t :footer3}" %></p>
</div>
</div>
</div>
</footer>
更改您的 CSS footer
对此的规定
footer {
padding-top: 0
}
移动现有内容footer
规则到新规则,footer > .row
, 像这样
footer > .row {
padding-top: 15px; /* added new property */
color: $gray; font-weight: bold; font-style: italic; font-size: 90%; line-height: 100%; a { color: $bluedark; }
background: red;
background: linear-gradient($red, $white);
background: -khtml-linear-gradient($red, $white);
background: -moz-linear-gradient($red, $white);
background: -ms-linear-gradient($red, $white);
background: -o-linear-gradient($red, $white);
background: -webkit-linear-gradient($red, $white);
}
关于html - 如何将线性渐变宽度修改为 100%?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41006945/
在我的 previous question ,已经确定,当纹理四边形时,面部被分解为三角形,纹理坐标以仿射方式插值。 不幸的是,我不知道如何解决这个问题。 provided link很有用,但没有达到
是否有简单的解决方案可以在 Qt 中为图像添加运动模糊?还没有找到任何关于模糊的好教程。我需要一些非常简单的东西,我可以理解,如果我可以改变模糊角度,那就太好了。 最佳答案 Qt 没有运动模糊过滤器。
我想构建一个有点复杂的轴,它可以处理线性数据到像素位置,直到某个值,在该值中所有内容都被归入一个类别,因此具有相同的数据到像素值。例如,考虑具有以下刻度线的 y 轴: 0%, 10%, 20%, 30
我需要确保两个 View 元素彼此相邻且垂直高度相同。我会使用基线约束来做到这一点,但目前我正在使用线性、可滚动的布局( ScrollView 中的线性布局),当我点击一个元素时,它不允许我从中获取基
考虑正则表达式 ".*?\s*$" 和一个不以空格结尾的字符串。 示例 " a" .最后\s永远无法匹配 a这就是为什么 匹配器迭代: \s\s\s\s\s - fails .\s\s\
Closed. This question needs to be more focused。它当前不接受答案。 想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。
我正在尝试阅读英特尔软件开发人员手册以了解操作系统的工作原理,这四个寻址术语让我感到困惑。以上是我的理解,如有不对请指正。 线性地址 : 对一个孤立的程序来说,似乎是一长串以地址0开头的内存。该程序的
有很多方法可以使用正则表达式并相应地使用匹配/测试匹配来检查字符串是否有效。我正在检查包含字母(a-b)、运算符(+、-、/、*)、仅特殊字符(如(')'、'(')和数字(0-9)的表达式是否有效 我
我正在使用 iris 数据集在 R 中练习 SVM,我想从我的模型中获取特征权重/系数,但我想我可能误解了一些东西,因为我的输出给了我 32 个支持向量。假设我要分析四个变量,我会得到四个。我知道在使
我正在使用 iris 数据集在 R 中练习 SVM,我想从我的模型中获取特征权重/系数,但我想我可能误解了一些东西,因为我的输出给了我 32 个支持向量。假设我要分析四个变量,我会得到四个。我知道在使
如何向左或向右滑动线性布局。在该线性布局中,默认情况下我有一个不可见的删除按钮,还有一些其他小部件,它们都是可见状态,当向左滑动线性布局时,我需要使其可见的删除按钮,当向右滑动时,我需要隐藏该删除按钮
我正在编写一个 R 脚本,运行时会给出因变量的预测值。我的所有变量都被分类(如图所示)并分配了一个编号,总类数为101。(每个类是歌曲名称)。 所以我有一个训练数据集,其中包含 {(2,5,6,1)8
如果源栅格位于 linear RGB color space使用以下 Java 代码进行转换,应用过滤器时(最后一行)会引发 java.awt.image.ImagingOpException: Un
我想为我的多个 UIImageView 设置动画,使其从 A 点线性移动到 B 点。 我正在使用 options:UIViewAnimationOptionCurveLinear - Apple 文档
我第一次无法使用 CSS3 创建好看的渐变效果。右侧应该有从黑色到透明的渐变透明渐变。底部是页脚,所以它需要在底部另外淡化为透明。 如果可能的话,一个例子: 页面的背景是一张图片,所以不可能有非透明淡
我有一组线性代数方程,Ax=By。其中A是36x20的矩阵,x是20x1的 vector ,B是36x13,y是13x1。 排名(A)=20。因为系统是超定的,所以最小二乘解是可能的,即; x = (
我有一个带有年月数据列(yyyymm)的 Pandas 数据框。我计划将数据插入每日和每周值。下面是我的 df。 df: 201301 201302 201303
假设我想找到2条任意高维直线的“交点”。这两条线实际上不会相交,但我仍然想找到最相交的点(即尽可能靠近所有线的点)。 假设这些线有方向向量A、B和初始点C、D,我可以通过简单地设置一个线性最小二乘问题
如果我想编写一个函数(可能也是一个类),它从不可变的查找表(调用构造函数时固定)返回线性“平滑”数据,如下所示: 例如func(5.0) == 0.5。 存储查找表的最佳方式是什么? 我正在考虑使用两
给定一条线 X像素长如: 0-------|---V---|-------|-------|-------max 如果0 <= V <= max , 线性刻度 V位置将是 X/max*V像素。 如何计
我是一名优秀的程序员,十分优秀!