Я пытаюсь создать стиль компоновки playbook, который выглядит следующим образом:
Name: Text starting here - style #1
text which should go in a new line with different style #2
text continue here with another new line - style #1
Longer Name: Text starting here - style #1
text which should go in a new line with different style #2
text continue here with another new line - style #1
Моя проблема в том, что я не могу получить текст стиля # 2, начинающийся с новой строки.
Это мой код:
<div class="line">
<div class="level1">
<div class="name" >name:</div>
Text starting here - style #1
<span>text which should go in a new line with different style #2</span>
text continue here with another new line - style #1
</div>
</div>
<style type="text/css">
.line {
text-align: right;
font-size: 14px;
width: 477px;
margin: 0 auto;
}
.level1 {
display: inline-flex;
font-size: 14px;
line-height: 12px;
}
.name {
display: inline-block;
font-size: 14px;
width: 40px;
min-width: 50px;
text-align: left;
margin-left: 15px;
}
</style>
При этих значениях стиль № 2 всегда переносится в новый столбец, а не в новую строку.Вот пример jsfiddle .Я почти уверен, что это вызвано "flex-inline".У меня есть альтернатива для этого?