サービス
サービスを探す
プロ人材を探す
仕事を探す
ブログを探す

<h2>①target="_blank" なしのアンカータグ</h2>
<p><a href="~~URL~~">別窓アイコンなしリンク</a></p>
<h2>②target="_blank" ありのアンカータグ</h2>
<p><a href="~~URL~~" target="_blank">別窓アイコンありリンク</a></p>
<h2>③target="_blank" ありの .icon-right 指定アンカータグ</h2>
<p><a href="~~URL~~" class="icon-right" target="_blank">別窓アイコンあり.icon-right 指定リンク</a></p>
/* ■■■■ 【CSS】別窓マークを自動的に設置 ■■■■ */
a[target="_blank"]:after{
content: "\002197";
display: inline-block;
font-weight: bold;
font-size: 12px;
line-height: 1em;
width: 1em;
border: solid #333;
border-width: 1px 2px 2px 1px;
background: #fff;
vertical-align: middle;
margin: 0 0 0 5px;
color: #000;
border-radius: 3px;
}
a.icon-right {
display: block;
position: relative;
background: #eef;
}
a.icon-right[target="_blank"]:after{
content: "\002197";
position: absolute;
display: block;
font-size: 12px;
line-height: 0.95em;
width: 0.95em;
border: solid #333;
border-width: 1px 2px 2px 1px;
background: #fff;
color: #000;
top: 50%;
right: 15px;
transform: translateY(-50%);
overflow: hidden;
}
