[target="_blank"] { /* target="_blank"를 가진 모든 요소를 선택합니다. */
    background-color: darkblue;
    color: white;
}
<a href="https://www.example.com" title="공식 웹 사이트로 이동">예시 웹 사이트 이동</a>
<p>쉽고 재미있는 <abbr title="Hypertext Markup Language">HTML</abbr>을 배웁시다!</p>
<a target="_blank" href="https://www.example.com" title="공식 웹 사이트로 이동">예시 웹 사이트 새창 뜨기로 이동</a>
실제 적용된 모습
[target="_blank"] {
    background-color: darkblue;
    color: white;
}

/* 다음과 같이 작성해도 동일합니다. */
[target='_blank'] {
    background-color: darkblue;
    color: white;
}
속성 선택자의 브라우저 호환성
선택자
데스크탑 Chrome
Chrome
데스크탑데스크탑 Edge
Edge
데스크탑 Firefox
Firefox
Safari
Safari
[attribute="value"] 1 12 1 3