Analysis
, , , . question. :
HTML. , ( ). , ...
, , - . - .
He<b>llo, Wo</b>rld!
inline:
Hello, World
:
<a href="#">Lorem ipsum</a><a href="#">Lorem ipsum</a><a href="#">Lorem ipsum</a><a href="#">Lorem ipsum</a><a href="#">Lorem ipsum</a><a href="#">Lorem ipsum</a>
inline
Lorem ipsumLorem ipsumLorem ipsumLorem ipsumLorem ipsumLorem ipsum
.
, , . , . , <b> <span>, . , <b>, <span> . jsfiddle
- , <b> <span> , . css <span>, .
Angular :
<div ng-app="app" ng-controller="ctrl" class="container">
<b ng-repeat="tag in tags">
<a href="#">{{tag.name}}</a>
</b>
<span class="last-child"></span>
</div>
CSS
.container {
width: 100%;
text-align: justify;
}
.container b {
font-weight: normal;
}
.container a, .container span {
display: inline-block;
}
.last-child {
width: 100%;
}