请参阅此页http://www.parentcenterhub.org/region6-aboutus/
我在右边添加了一个链接列表。 CSS是:
.custom_list {
position: absolute;
Right: 70px;
top: 30px;
list-style-type: none;}
a.custom1_link { color:rgb(234,150,41); }
但是,现在页面的主要内容与它重叠。我想保持列表的宽度为300px,页面的主要内容应该包围它。请告诉正确的代码。
答案 0 :(得分:0)
样式如下:
.custom_list {
list-style-type: none;
float: right;
display: inline-block;
}
#primary{
display: -webkit-box; // or display: flex;
}