私は OS X で Chrome 41 を使用しています。ライブの例では、私の問題をより簡単に説明できます: http://mathieumarques.herokuapp.com/。
エクスペリエンスセクションまで下にスクロールすると、各段落の前に先頭のスペースが表示されますtext-indent: 0;
。ただし、プロパティに負の値を追加することはできtext-indent
ます。
Firefox ではこの問題はありません。
私は OS X で Chrome 41 を使用しています。ライブの例では、私の問題をより簡単に説明できます: http://mathieumarques.herokuapp.com/。
エクスペリエンスセクションまで下にスクロールすると、各段落の前に先頭のスペースが表示されますtext-indent: 0;
。ただし、プロパティに負の値を追加することはできtext-indent
ます。
Firefox ではこの問題はありません。
マークアップのタブ/スペース/文字が原因です。
それらを削除すると、問題が修正されます。
年:
<div class="lead timeline-body ng-scope" ng-transclude="" ng-bind-html="item.description"><p>
Web development with Django and jQuery.
Porting of a desktop C++ application to the
Web. Realization of a single page
application, with vectorial drawing on
mouse events.
</p>
新しい:
<div class="lead timeline-body ng-scope" ng-transclude="" ng-bind-html="item.description"><p>Web development with Django and jQuery. Porting of a desktop C++ application to the Web. Realization of a single page application, with vectorial drawing on mouse events.</p>