How to prevent the text from moving to the left edge? It is necessary that "Select a city ..." be within the span block and be under "Select a country ..."
.item { height: 30px; } .item span.tlt { min-width: 200px; display: inline-block; } span.tlt { color: gray; text-align: right; padding-right: 20px; vertical-align: top; } .info { width: 390px; } <div class="info"> <div class="item"><span class="tlt">Город:</span> <span>Выберите страну..., Выберите город...</span></div> </div>