質問編集履歴

2

誤字

2021/11/14 04:45

投稿

nony
nony

スコア2

test CHANGED
File without changes
test CHANGED
@@ -182,4 +182,4 @@
182
182
 
183
183
  ### 試したこと
184
184
 
185
- faq_contentsというクラス名を消して、dt,ddにクラスをつけてみたりしたのですが、、そうすると、dtをクリックした時、ddはdtと別のborderで表示されてしまいます。どうやっても私の今の技量では直せませんでした、、
185
+ faq_contentsというクラス名を消して、dt,ddにクラスをつけてみたりしたのですが、、そうすると、dtをクリックした時、ddはdtと別のborder枠内で表示されてしまいます。どうやっても私の今の技量では直せませんでした、、

1

css、jquery追記しました!

2021/11/14 04:45

投稿

nony
nony

スコア2

test CHANGED
File without changes
test CHANGED
@@ -66,7 +66,119 @@
66
66
 
67
67
  ```
68
68
 
69
+ ```css
69
70
 
71
+ .FAQ dl{
72
+
73
+ display: flex;
74
+
75
+ justify-content: space-between;
76
+
77
+ max-width: 960px;
78
+
79
+ margin: 0 auto;
80
+
81
+ padding-top: 50px;
82
+
83
+ font-family: 'Montserrat', sans-serif;
84
+
85
+ }
86
+
87
+ .faq_contents{
88
+
89
+ border: 1px solid #253b52;
90
+
91
+ background-color: #fff;
92
+
93
+ margin-bottom: 20px;
94
+
95
+ padding: 5px;
96
+
97
+ }
98
+
99
+ .FAQ dt{
100
+
101
+ font-size: 20px;
102
+
103
+ padding: 5px 10px;
104
+
105
+ font-weight: bold;
106
+
107
+ cursor: pointer;
108
+
109
+ }
110
+
111
+ .FAQ i{
112
+
113
+ float: right;
114
+
115
+ vertical-align: middle;
116
+
117
+ line-height: 30px;
118
+
119
+ color: #71A4D9;
120
+
121
+ }
122
+
123
+ .FAQ dd{
124
+
125
+ font-size: 18px;
126
+
127
+ margin: 0 20px 20px;
128
+
129
+ text-align: justify;
130
+
131
+ }
132
+
133
+ .faqL{
134
+
135
+ width: 50%;
136
+
137
+ margin-right: 50px;
138
+
139
+ }
140
+
141
+ .faqR{
142
+
143
+ width: 50%;
144
+
145
+ }
146
+
147
+ ```
148
+
149
+ ```jquery
150
+
151
+ const dt=$('.FAQ dt');
152
+
153
+ const dd=$('.FAQ dd');
154
+
155
+
156
+
157
+ dd.hide();
158
+
159
+
160
+
161
+ dt.on('click',function(){
162
+
163
+ $(this).next().slideToggle();
164
+
165
+ dd.not($(this).next()).slideUp();
166
+
167
+
168
+
169
+ $(this).children("i").toggleClass('fas fa-plus fas fa-minus');
170
+
171
+ dt.not($(this)).removeClass('fas fa-plus fas fa-minus');
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+ });
180
+
181
+ ```
70
182
 
71
183
  ### 試したこと
72
184