溢出自动,滚动,属性不起作用

时间:2017-03-14 04:12:50

标签: css html5 twitter-bootstrap-3 overflow behance-api

我找到了这个我真正爱上的主题。

start bootstrap template

我想用这个主题制作我的投资组合网站,但这里是我希望它实现的一些变化。

当您单击任何缩略图时,其他图像将向右弹出,这是您希望它展示的主图像。我希望该图像很大,可能 1280 px并且溢出自动或可滚动

我给了父div溢出属性自动,但它没有用。然后,我改为滚动,仍然无法正常工作

这是HTML:

<section class="no-padding" id="portfolio">
    <div class="container-fluid">
        <div class="row no-gutter popup-gallery">
            <div class="col-lg-8 col-lg-offset-2 text-center portfolio_text_padding">
                <h2 class="section-heading">Portfolio</h2>
                <hr class="light color">
                <p class="text-faded portfolio">
                    Portfolio time another word it is time to showcase the work.
                </p>
            </div>
            <div class="col-lg-4 col-sm-6">
                <a href="img/portfolio/bkg.png" class="portfolio-box" >
                    <img src="img/portfolio/thumbnails/1.jpg" class="img-responsive" alt="">
                    <div class="portfolio-box-caption">
                        <div class="portfolio-box-caption-content">
                            <div class="project-category text-faded">
                                Category
                            </div>
                            <div class="project-name">
                                Project Name
                            </div>
                        </div>
                    </div>
                </a>
            </div>
        </div>
    </div>
</section>

所以我在这些缩略图中放入的图像是1400px到2000px以及我从behance得到的这个想法

非常感谢你。

1 个答案:

答案 0 :(得分:0)

https://css-tricks.com/almanac/properties/o/overflow/

在这个小提琴中你可以尝试一下

http://jsfiddle.net/x58RD/

#mydiv {
    overflow: auto;
    max-width: 800px;
    max-height: 600px;
}

将HTML替换为:http://abduzeedo.com/sites/default/files/styles/home_cover/public/originals/wpw_1400px.jpg?itok=IeiXQvLh

然后点击“运行”

希望这会有所帮助:) 让我知道