如何在网页中修改页脚?还为图像添加resize事件

时间:2016-05-03 04:15:12

标签: javascript html css

我要显示一个页脚,使地址显示在页脚的中心,并且facebook图标和版权在页脚的右下角。



.footer-wrapper {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin-top: 0;
  padding: 1em;
  background-color: #eebd0d;
  color: #f2f1e6;
  border-top: 3px solid #030000;
  font-size: 12px
}
.footer {
  text-align: right
}
.footer a {
  color: #c4960c
}
.footer-gambling-hotline {
  font-size: .75em;
  padding-top: 20px
}
.footer-copyright {
  font-size: .75em
}

<div id="footer_wrapper_casino" class="footer-wrapper">
  <section class="footer">
    <center> 
      <font size="2">address</font> 
    </center>
    
    <div class="social-media-block" style="margin-bottom:20px;" align="right">
      <a href="https://www.facebook.com/" target="_blank">
        <img width="32" height="32" src="images/casino_fb.png" alt="Casino   Facebook" />
      </a>
      <br/>&copy; casino. All rights reserved.
    </div>
</div>
&#13;
&#13;
&#13;

我的第二个问题是我要修复背景图像,以便在调整窗口大小时图像自动调整到它。我在编写eventlistener函数时需要帮助。

<div id="main-content" class="col-lg-10 col-md-9 col-sm-8 col-sx-12 main-content full-height"> 
<div class="col-xs-12 col-md-6 col-lg-4"> 
    <img src="images/homebg.jpg" height="auto" width="1186" alt="Casino Booking"/> 
</div>

这个网站已经设计好,我被要求做一些改动,因为我不熟悉网页设计,让我有时间去理解。

0 个答案:

没有答案