[SS]IR技術
6234 ワード
IR技術?
画像置換(Image Replacement)技術は、Webアクセスのスクリーンリーダーユーザを満たすだけでなく、検索エンジン内のコンテンツを効率的に収集するために、画像を表示できないユーザに適切な代替テキストを提供する.
企業のIR技術
カカオ色
カカオ色
/*PC용*/
.ir_pm{
display:block;
overflow:hidden;
Font-size:1px;
line-height:0;
text-indent:-9999px;
}
/*Mobile용*/
.ir_pm{
display:block;
overflow:hidden;
font-size:1px;
line-height:0;
color:transparent;
}
モバイルデバイスのcolor:transparent;
は、IE 9から提供されるため、PCには適用されない..screen_out {
overflow: hidden;
position: absolute;
width: 0;
height: 0;
line-height: 0;
text-indent: -9999px;
}
.ir_wa{
display:block;
overflow:hidden;
position:relative;
z-index:-1;
width:100%;
height:100%
}
NAVER
.blind {
position: absolute;
clip: rect(0 0 0 0);
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
}
IEの旧バージョンで認識できない場合がありますので、margin:-1 px;使用します.クーボン
.product-search a.search {
overflow: hidden;
position: absolute;
right: 0;
width: 50px;
height: 39px;
background-position: -112px -71px;
text-indent: -9em;
}
Reference
この問題について([SS]IR技術), 我々は、より多くの情報をここで見つけました https://velog.io/@chumil7432/CSSIR기법テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol