jsx
1const array = ["A", "B", "C", "D"]; 2const lists = array.map(alphabet => ( 3 <li className="lists" key={alphabet}> 4 {alphabet} 5 </li> 6));
上記のコードでレンダリングした要素の内、最後の要素Dだけ、違うCSSを適用する方法を教えていただきたいです。
下記は動作サンプルです。
動作サンプル
サンプルではレンダリングする各要素にmargin-bottom
ほかを設定していますが、最後の要素であるD要素は、margin-bottom
を0にしたいです。
ソースコード
jsx
1export default function App() { 2 const array = ["A", "B", "C", "D"]; 3 const lists = array.map(alphabet => ( 4 <li className="lists" key={alphabet}> 5 {alphabet} 6 </li> 7 )); 8 9 return ( 10 <div className="wrap"> 11 <ul>{lists}</ul> 12 </div> 13 ); 14}
css
1.wrap { 2 background-color: gray; 3 padding: 16px; 4} 5 6.lists { 7 background-color: lightGray; 8 height: 50px; 9 width: 100px; 10 margin-bottom: 50px; 11}
試したこと
配列の内、渡った値がDであればmargin-bttom: 0
のインラインスタイルを適用する、というコードを書いてみました。
jsx
1<li className="lists" style={alphabet==="D" && { marginBottom: 0 }} key={alphabet}> 2 {alphabet} 3</li>
エラー内容は下記です。
The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX. in li (at App.js:7) in ul (at App.js:14) in div (at App.js:13) in App (at src/index.js:9) in StrictMode (at src/index.js:8)
内容を見るに、スタイル属性には条件式が使えなさそうです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。