(
JavascriptをONにしていただいた方がより快適に利用できます。
)
【 HP作成質問箱 】
|
通常一覧
|
通常詳細
|
過去ログトップ
|
過去ログ一覧
|
過去ログ詳細
|
新規入力
|
記事検索
|
新しい質問は「新規入力」ボタンをクリックしてください。
| Page-1
【HP作成質問箱/詳細】
一覧
/
詳細
最新
:
1頁
No.11794 テスト
[でめにぎ] [
ブラウザ
] 25/02/21 (金) 03:09
コンテンツタブって何ですか?
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>クリップボードにコピー</title>
<style>
textarea {
width: 200px;
height: 100px;
resize: none;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
padding: 10px;
}
.heading {
width: 100%;
text-align: center;
font-size: 20px;
padding: 10px;
font-weight: bold;
background-color: #007bff;
color: white;
cursor: pointer;
border-radius: 5px;
}
.content {
display: block;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.hidden {
max-height: 0;
padding: 0;
overflow: hidden;
}
.copy-btn {
background-color: #007bff;
color: white;
border: none;
padding: 10px;
cursor: pointer;
margin-top: 5px;
border-radius: 5px;
}
.copy-btn:hover {
background-color: #0056b3;
}
</style>
▼
▼
▼
No.11797 Re:テスト
[atom] [
ブラウザ
] 25/02/21 (金) 09:46
> コンテンツタブって何ですか?
こちら、どのような場面で使われてましたか?
それによって回答が変わってしまいます。
一度Googleなどで、「コンテンツタブ」もしくは「コンテンツ タブ」と検索されてみればなにかヒントが見つかるかもしれませんね。
▼
▼
▼
最新
:
1頁
| Page-1
一覧
/
詳細
page update:23/11/28 16:31
Copyright (c) 2000-2009, all Rights Reserved & Produced by
atom
Home
↑ページトップ
SEO対策 & ツール
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>クリップボードにコピー</title>
<style>
textarea {
width: 200px;
height: 100px;
resize: none;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
padding: 10px;
}
.heading {
width: 100%;
text-align: center;
font-size: 20px;
padding: 10px;
font-weight: bold;
background-color: #007bff;
color: white;
cursor: pointer;
border-radius: 5px;
}
.content {
display: block;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.hidden {
max-height: 0;
padding: 0;
overflow: hidden;
}
.copy-btn {
background-color: #007bff;
color: white;
border: none;
padding: 10px;
cursor: pointer;
margin-top: 5px;
border-radius: 5px;
}
.copy-btn:hover {
background-color: #0056b3;
}
</style>