因此,当我拉伸或缩小浏览器的宽度时,
我的标记:
g++ -Wall -W main.cpp -o HelloWorldCPP -lcurl -lnotify
CSS:
/usr/bin/ld: cannot find -lnotify
如果可能,我不想创建额外的标记或使用JavaScript来修复实现此目的。
答案 0 :(得分:2)
如果没有必要设置百分比边距,可以尝试设置静态边距(例如20px)和计算宽度(25% - 20px);
.parent{
margin-right: -20px;
}
.child{
display: inline-block;
vertical-align: top;
width: calc(25% - 20px);
margin-right: 20px;
margin-bottom: 20px;
height: 100px;
}
答案 1 :(得分:0)
Flexbox&视口高度解决方案
.container {
display: flex;
margin-bottom: 10vh; //Margin bottom of 10% of viewport height applied to the container instead of the item
}
.item {
height: 100px;
margin-right: 20px; //Flexbox automatically handels that (may wanna switch off for the last child)
background-color: tomato;
flex: 1; //All items take equal width to fill the container
}
P.S。我没有得到你的意思"等于水平&垂直边距",但如果您的意思是水平边距==垂直边距,则将10vh
替换为20px.