如何在codeigniter中创建类别和论坛之间的关系?首先我获取所有类别,将它们放在一个数组中,然后在我的论坛上显示它们:
// $this->db->order_by('category_position', 'asc');
// $q = $this->db->get('categories');
// return $q->result_array();
这完美无缺。接下来我应该怎么去获得与类别相关的所有论坛?我应该如何使用codeigniter的get_where - 然后从另一个方法说明forum id = category id?
我的数据库很简单,包含以下内容:
// For categories: category_id, category_position, category_title
// For forums: forum_id, forum_position, forum_title
答案 0 :(得分:1)
你提到没有CSS Grid或bootstrap,你能使用flex吗?如果是这样,你可以这样做:
.fluid-parent {
display: flex;
height: 100px;
}
.fixed-child {
width: 100px;
background: red;
}
.fluid-child {
flex: 1;
background: blue;
}

<div class="fluid-parent">
<div class="fixed-child"></div>
<div class="fluid-child"></div>
</div>
&#13;
答案 1 :(得分:0)
一种解决方案是将div设置为设定宽度。并为容器的填充添加相同的大小以相应地抵消第二个div。
for i in range(classsize):
while prob=prob*(365-i)/365 > 0.1:
classsize+1
print(classsize)
.container {
background-color: red;
width: 300px;
padding-left: 100px;
/*Width of the left div*/
position: relative;
}
.left {
width: 100px;
background-color: green;
position: absolute;
left: 0;
}
.right {
background-color: blue;
}
div {
height: 200px;
}