React, JavaScript 等初心者です。
CSSを設定したいのですが、
効いておりません。
確認すべき箇所、または間違いをご指摘いただけますと幸いです。
indexpage.css ↓
CSS
1ul.column { 2 background-color: black; 3 margin: 0; 4 text-align: left; 5 list-style: none; 6 width:48%; 7 display: inline-block; 8}
JSX
1const React = require('react') 2class Index extends React.Component { 3 render(){ 4 const products = this.props.products; 5 return ( 6 <div styles={[{key: 0, href: '/css/app.css'}, { key: 1, href: '/css/indexpage.css'}]}> 7 <h1>See All The Products!</h1> 8 <ul> 9 { 10 products.map((product)=>{ 11 return( 12 <li key={product._id} id="column"> 13 <a href={`/products/${product._id}`}><font color="silver">{product.name}{product.description}</font></a> 14 <form method="POST" action={`/products/${product._id}?_method=DELETE`}> 15 <img src={product.img} width="295px" height="393px" ></img> 16 <input type="submit" value="DELETE"/> 17 </form> 18 <a href={`/products/${product._id}/edit`}><font color="silver">Edit This Product</font></a> 19 </li> 20 ) 21 }) 22 } 23 </ul> 24 </div> 25 ) 26 } 27} 28 29module.exports = Index; 30
回答1件
あなたの回答
tips
プレビュー