Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CSS を使用してプログラムで検索ボックス オーバーレイを表示または非表示にする方法を教えてください。
html:
<form> <input type="text" class="search-box" /> <form>
非表示にする CSS:
.search-box{ display:none; }
表示する CSS:
.search-box{ display:block; }