我似乎无法对齐产品网格,以便项目从左侧而不是右侧出现:
http://penarthpc.com/~dronebo2/wp/shop/tshirts/
我所做的一切都只是弄乱了模板文件,我在这里遗漏了什么吗?
我似乎无法对齐产品网格,以便项目从左侧而不是右侧出现:
http://penarthpc.com/~dronebo2/wp/shop/tshirts/
我所做的一切都只是弄乱了模板文件,我在这里遗漏了什么吗?
添加float:right
到#shop-menu-left
#container #content #shop-content #shop-menu-left {
float: right;
width: 240px;
}
#container #content #shop-content #shop-right #product{float:left;}
#container{
float:right;
margin-left:...px;
}
在您的 HTML 中
<div id="shop-content">
<div id="shop-menus">
</div>
<div id="shop-items">
</div>
</div>
在你的 CSS 中:
#shop-content {
float:both;
}
#shop-menus {
float:right;
}
# shop-items{
float:left;
}
只需使用
float: ((left or right or where you want));
在 CSS 文件中