我正在尝试创建一个Bootstrap容器,它有两个列。在较大的屏幕上,列应该水平并排,在较小的屏幕上,它们应该垂直堆叠。在列周围应该有一个1px的圆角边框。根据下面的模型图片:
two columns on large screens
two columns on small screens的
请注意,在大屏幕和小屏幕上,列的接触点仍然只有1px,并且没有圆角。
我现在的情况是
.custom-left-column {
border: 1px solid #ccc;
background-color: #fff;
padding: 15px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.custom-right-column {
border: 1px solid #ccc;
background-color: #e9ecef;
padding: 15px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
个字符
1条答案
按热度按时间l7mqbcuq1#
试试这个代码:
个字符