我有一個複選框列表,每一個都帶有一個標籤:CSS格式複選框
<input type="checkbox" id="patient-birth_city" name="patient-birth_city" />
<label for="patient-birth_city">(_PATIENT_BIRTH_CITY_)</label>
<input type="checkbox" id="patient-birth_state" name="patient-birth_state" />
<label for="patient-birth_state">(_PATIENT_BIRTH_STATE_)</label>
<input type="checkbox" id="patient-birth_country" name="patient-birth_country" />
<label for="patient-birth_country">(_PATIENT_BIRTH_COUNTRY_)</label>
Without using any CSS它們在同一行顯示(我想他們有一個默認的「內聯」或「塊直列「顯示)。問題是我無法修改HTML結構,我需要每對checkbox-label出現在一個新行中。 Like this。有沒有可能只使用CSS?
他說他不能修改html結構,所以這不是一個解決方案。請閱讀這個問題。 – Willem
@Willem,哦,是誤讀那部分。 – Tomgrohl