gpt4 book ai didi

css - 增加 div 的宽度,忽略 container-parent 的宽度(并使用 x 滚动条)

转载 作者:太空宇宙 更新时间:2023-11-04 04:42:28 24 4
gpt4 key购买 nike

让我用 madskillz 解释一下。

  1. 当前状态 wrong

我正在做一个由 url 数组组成的画廊。哈姆代码:

%section#content
%form
%fieldset
#gallery
%i.gallery_title Все категории
.cat-item
- @all.zip(@all_thumbs).each do |full, thumb|
.cat-pic
%a{href:"#{full}", rel:'lightbox[roadtrip]'}
%img{src:"#{thumb}", alt:"Панно \"#{full}\""}
%br
%input{type:'radio', name:'picture', value:"#{full}"}

CSS (sass)

#content
margin: auto
margin-top: 25px
padding-bottom: 100px
width: 950px
align: center
form
display: inline-block
fieldset
background-color: darken($bg, 10%)
border-radius: 10px /* wtf firefox */
@include round(10px)
.cat-item
height: 150px
overflow-x: scroll
overflow-y: hidden
background: $bg
@include round(10px)
min-width: auto !important
.cat-pic
margin-left: 5px
margin-top: 5px
height: 120px
float: left
input
width: 100px

我想把所有图片排成一行,加一个x轴滚动条。我已经厌倦了 css。希望你能帮忙。 i_want

最佳答案

这是一个 HTML 和 CSS 的工作示例,可以实现与您正在寻找的结果非常相似的结果: http://jsfiddle.net/rey6G/

<html>
<head>
<title>Test</title>
<style type="text/css">
#Outer {
border: #000000 1px solid;
background-color: #FFFFFF;
width: 500px;
overflow-x: scroll;
overflow-y: hidden;
}
#Inner {
list-style: none;
white-space: nowrap;
margin: 0;
padding: 0;
}
#Inner > li {
display: inline-block;
vertical-align: top;
margin-left: 5px;
border: #CCCCCC 1px solid;
padding: 10px;
width: 80px;
height: 80px;
white-space: normal;
overflow: hidden;
}
</style>
</head>
<body>
<div id="Outer">
<ul id="Inner">
<li>Something</li>
<li>Something Else</li>
<li>Another thing</li>
<li>Thing 4</li>
<li>Badda thing</li>
<li>Wee Thing</li>
<li>This thing</li>
<li>That thing</li>
</ul>
</div>
</body>
</html>

注意 这使用 display: inline-block 在非常旧的 IE 版本(我相信是 IE7 及以下)中不起作用。我怀疑这是一个问题,但我觉得我应该提出来!

关于css - 增加 div 的宽度,忽略 container-parent 的宽度(并使用 x 滚动条),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15191034/

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