我們的網上商店根據客戶輸入的字段生成發票。但是,并非所有字段都是必填的。有一個字段是不需要的,即公司名稱,我們希望將它放在名稱+地址的上方(如果適用)。
目前,我們附加字段的定位編輯如下:
/* .additional-information {
position: absolute;
left: 250px;
bottom: -100px;
}*/
.additional-information > div:nth-of-type(1) {
position: relative;
left: 0px;
top: -15px;
}
.additional-information > div:nth-of-type(2) {
position: relative;
left: 0px;
top: -15px;
#and so forth for a max of 12 fields
}
當客戶輸入一個公司字段時,有沒有辦法專門編輯這個公司字段?當我檢查模板時,我只看到一個列表,沒有“公司名稱”字段的標識符。我是CSS新手,所以我可能會忽略一些東西。