我們的網(wǎng)上商店根據(jù)客戶輸入的字段生成發(fā)票。但是,并非所有字段都是必填的。有一個(gè)字段是不需要的,即公司名稱,我們希望將它放在名稱+地址的上方(如果適用)。
目前,我們附加字段的定位編輯如下:
/* .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
}
當(dāng)客戶輸入一個(gè)公司字段時(shí),有沒有辦法專門編輯這個(gè)公司字段?當(dāng)我檢查模板時(shí),我只看到一個(gè)列表,沒有“公司名稱”字段的標(biāo)識符。我是CSS新手,所以我可能會忽略一些東西。