1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

隠しテキスト・検索用テキストの設定

Last updated at Posted at 2016-02-10

画像が多めのサイトに検索用のテキストを忍ばせる

  • html
<ul class="secret">
	<li>サンプル</li>
	<li>サンプル</li>
	<li>サンプル</li>
</ul>

<!-- もしくは -->

<p class="txt-hidden">サンプル</p>
  • css
/* 親要素から消す */
.secret{
	display: none;
}

/* 要素そのものを消す */
.txt-hidden {
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
}

参考:こういうやり方もある
http://ss-complex.com/2013/12/css-cleartext/

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?