【问题标题】:CSS dropshadow doesn't reach the bottom of the page?CSS dropshadow 没有到达页面底部?
【发布时间】:2013-04-17 22:19:32
【问题描述】:

我想在我的主要内容的两侧使用阴影,但它没有到达页面底部。它在结束前将它切断了大约 100 像素。一直想不通为什么。非常感谢任何帮助!

HTML 文件:http://db.tt/0z0cNVIt 样式表:http://db.tt/1cJDzbJ0

HTML

<div id="container">
    <div id="sidebar">
        <img name="logo" src="" width="280" height="150" alt="" />
        <br />
        <br />Babylon Citizens Council of the Arts is a not-for-profit arts organization bringing theatre, music, fine arts and cultural events to the residents of the Town of Babylon.
        <br />
        <br />
        <ul id="nav">
            <li><a href="about.html">About</a>
            </li>
            <li><a href="events.html">Events</a>
            </li>
            <li><a href="programs.html">Programs</a>
            </li>
            <li><a href="comp.html">Competitions</a>
            </li>
            <li><a href="photos.html">Photos</a>
            </li>
            <li><a href="membership.html">Membership</a>
            </li>
            <li><a href="contact.html">Contact</a>
            </li>
        </ul>
        <br />Follow us on social networks!
        <br />
        <br />
<a href="#"><img src="images/fb.png" /></a>  <a href="#"><img src="images/twitter.png" /></a>

    </div>
    <div class="content">
         <h3>Welcome to the Babylon Citizens Council on the Arts!</h3>

        <p><a href="#">link test</a>
        </p>
        <div id="slider">SLIDER WILL BE HERE</div>
        <!-- end .content -->
    </div>
    <!-- end .container -->
</div>

CSS

@charset"UTF-8";
 html, body {
    height: 100%;
}
body {
    font: 12px Verdana, Arial, Helvetica, sans-serif;
    line-height: 22px;
    background: url(images/bg.png);
    margin: 0;
    padding: 0;
    color: #666;
}
/* ~~ Element/tag selectors ~~ */
 ul, ol, dl {
    /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px;
    /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img {
    /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
 a:link {
    color: #42413C;
    text-decoration: underline;
    /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
    color: #6E6C64;
    text-decoration: underline;
}
a:hover, a:active, a:focus {
    /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
}
/* ~~ this fixed width container surrounds all other elements ~~ */
 #container {
    width: 960px;
    height: 100%;
    background: #FFF;
    display: block;
    margin: 0 auto;
    /* the auto value on the sides, coupled with the width, centers the layout */
    -moz-box-shadow: 10px 0 5px -10px #cab7aa, -10px 0 5px -10px #cab7aa;
    -webkit-box-shadow: 10px 0 5px -10px #cab7aa, -10px 0 5px -10px #cab7aa;
    box-shadow: 10px 0 10px -10px #cab7aa, -10px 0 10px -10px #cab7aa;
    /* For IE 8 */
    -ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#cab7aa')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#cab7aa');
}
/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
 #sidebar {
    width: 280px;
    height: 100%;
    float: left;
    background-color: #f5e9e0;
    padding: 40px;
}
#nav {
    list-style-type: none;
    line-height: 32px;
}
#nav a, #nav a:link, #nav a:visited, #nav a:active {
    text-decoration: none;
    border-bottom: 1px dotted #784e33;
    display: block;
}
#nav a:hover {
    text-decoration: none;
    border-bottom: 1px dotted #784e33;
    background-color: #fcf5f0;
}
.content {
    width: 560px;
    height: 100%;
    float: right;
    background-color: #FFF;
    padding: 40px 20px 40px 20px;
}
/* ~~ miscellaneous float/clear classes ~~ */
 .fltrt {
    /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}
.fltlft {
    /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
}
.clearfloat {
    /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

【问题讨论】:

标签: css dropshadow


【解决方案1】:

您需要删除您的bodyhtml 高度(100% 仅使用浏览器高度)并在关闭您的container div 之前放置一个清除 div。

清除 div:&lt;div style="clear: both;"&gt;&lt;/div&gt;

在这里查看:http://jsfiddle.net/7mJMx/1/

感谢 @Allendar 制作原始的 jsfiddle!

【讨论】:

  • 谢谢大家,对小提琴的事感到抱歉!效果很好。
  • 使用额外的标记来清除浮动是 10 年前的事了。 codepen.io/cimmanon/pen/qDjdr
  • @user1909137,如果有帮助,请考虑接受答案。
  • @LinusCaldwell 对不起,当然。还有一个问题......我有 100% 的高度,因为我希望侧边栏和内容进入页面底部,即使没有内容填充它。我不能用阴影做这个吗?
  • 你可以做类似min-height: 100%;
猜你喜欢
  • 2012-10-20
  • 1970-01-01
  • 1970-01-01
  • 2011-01-09
  • 1970-01-01
  • 2015-01-10
  • 2013-01-04
  • 2013-09-13
  • 2014-06-10
相关资源
最近更新 更多