CSS中,要移動一個box,可以通過以下幾種方式實現。
1. 使用position屬性
.box { position: relative; left: 20px; }
上述代碼中,將box的position屬性設置為relative,然后使用left屬性將其向左移動了20像素。
2. 使用margin屬性
.box { margin-left: 20px; }
上述代碼中,使用margin-left屬性將box向左移動了20像素。
3. 使用transform屬性
.box { transform: translateX(20px); }
上述代碼中,使用transform的translateX函數將box向右移動了20像素。注意,在使用transform屬性時,需要注意兼容性問題。