我的代码:
composer install
outcome
expected outcome
我究竟做错了什么?我已经看到Bootstrap网格做了类似的事情。
快速更新。对不起解释。进一步解释:
保证金:0-10px;用于向左和右添加边距,但右边没有做任何事情。
答案 0 :(得分:2)
CSS margin
属性的语法是:
margin: (all|vertical horizontal|top right bottom left)(unit);
这意味着您的声明
margin: 0 -10px;
正在使用vertical horizontal
语法 - 即您将<{1}}边距应用于元素的两个边,而不仅仅是右边。要解决此问题,请使用完整语法:
-10px
答案 1 :(得分:1)
用此设置右边距:
margin:0 -10px 0 0;
// top, right, bottom, left
答案 2 :(得分:1)
对于config.signature_version = botocore.UNSIGNED
boto3.client('s3', config=config).generate_presigned_url('get_object', ExpiresIn=0, Params={'Bucket': bucket, 'Key': key})
,.inside
仅涵盖width: 100%
填充内的空间。您需要将额外的20px添加回其宽度:
.container
&#13;
.container {
width: 100px;
margin: 0 auto;
padding: 0 10px;
background: red;
}
/* this is inside the container */
.inside {
width: calc(100% + 20px);
height: 100px;
background: blue;
margin: 0 -10px;
}
&#13;
答案 3 :(得分:1)
答案是:
.inside {
/* other styles */
margin-right: -10px;
}