Как исправить двойной интервал в HTML после маркеров? - PullRequest
0 голосов
/ 14 мая 2019

Я настраиваю список продуктов для сайта Magento, и у меня возникают проблемы с удалением двойного интервала после маркеров.Как я могу решить эту простую проблему?

Сначала основная проблема заключалась в том, что пули не делали отступ правильно.Тем не менее, я ввел отступ, но это вызвало только двойной интервал между последним пунктом и моим последним предложением.Я хочу, чтобы последнее предложение выровнялось обратно к предложению «Всегда следовать этим ...».

[<div><span style="text-decoration: underline;">Always follow these precautionary tips before, during, and after you use the test strips:</span></div>
<div style="padding: 15px 50px;">
<ul>
<li>Always consult with a Doctor or Healthcare Professional determines how often you should test and what your target ranges are for blood glucose results.</li>
<li>Remove only one test strip at a time from test strip vial. Recap vial immediately.</li>
<li>NEVER reuse test strips.</li>
<li>Dispose test strips immediately after use.</li>
</ul>
</div>
<div><strong>Case of 100 (2 Boxes of 50)</strong></div>][1]

Image of Double Spacing on Site

1 Ответ

0 голосов
/ 14 мая 2019

ul{   
   margin-bottom:0;
}
<div><span style="text-decoration: underline;">Always follow these precautionary tips before, during, and after you use the test strips:</span></div>
<div style="padding: 15px 50px;">
<ul>
<li>Always consult with a Doctor or Healthcare Professional determines how often you should test and what your target ranges are for blood glucose results.</li>
<li>Remove only one test strip at a time from test strip vial. Recap vial immediately.</li>
<li>NEVER reuse test strips.</li>
<li>Dispose test strips immediately after use.</li>
</ul>
</div>

<div><strong>Case of 100 (2 Boxes of 50)</strong></div>
...