2

コーディングにアライメントの問題があります。Windows では、すべてのブラウザが問題ないようです。しかし、Mac の firefox で確認したところ、位置合わせが完全ではありませんでした。値を少し変更することで修正できます。ただし、これは Mac 上の Firefox のみに対応する必要があります。

これにはCSS属性などがありますか?

例: http://jsfiddle.net/9chk5/

.notes {
display: inline-block;
position: relative;
width: 16px;
height: 16px;
margin: 0 auto;
background: #abc;
}

.search-notes {
font-size: 14px;
color: #484848;
position: relative;
top: -20px;
margin: 0 25px 0 22px;
}

そしてHTML

<div class="notes" style="top:2px"></div><div class="search-notes">This link is used to get information about the visitors from the google organic search. This link is used to get information about the visitors from the google organic search. This link is used to get information about the visitors from the google organic search. This link is used to get information about the visitors from the google organic search. </div>
    </div>
4

2 に答える 2