私は実際にはCSSの経験が少ないので、私はこのパスで新しい初心者ですし、私はそれに行divといくつかのカードがあります。しかし、カードが追加されたときにその行が水平にスクロールできるようにしたい。ここにその様子があります。無制限の水平divスクロール - React/CSS
カードを追加すると、それらは自動的にお互いの下に置くが、私は彼らが並んでする必要があります。コードスニペットは次のとおりです。
<div class="row">
<div class="col-sm-6">
<div class="box box-transparent">
<div class="box-body">
<h5 class="text-primary">IF: Add one or more conditions.</h5><br>
<div>
<div class="card bg-color-primary" style="height: 170px; width: 300px; border-color: rgb(30, 144, 255); background-color: white; border-width: 4px;">
<div class="card-content" style="color: black;"><span class="card-title">property</span>
<p>> 21</p>
</div>
<div class="card-action"><a href="javascript:;" style="color: red;">OR</a><a href="javascript:;" style="color: black;">AND</a><a style="color: gray; cursor: pointer;">EDIT</a></div>
</div>
<div class="card bg-color-primary" style="height: 170px; width: 300px; border-color: rgb(30, 144, 255); background-color: white; border-width: 4px;">
<div class="card-content" style="color: black;"><span class="card-title">property</span>
<p><= 45</p>
</div>
<div class="card-action"><a href="javascript:;" style="color: red;">OR</a><a href="javascript:;" style="color: black;">AND</a><a style="color: gray; cursor: pointer;">EDIT</a></div>
</div>
</div>
<div>
<div class="card bg-color-primary" style="height: 170px; width: 300px; border-color: rgb(30, 144, 255); background-color: white; border-width: 4px;">
<div class="card-content" style="color: black;"><span class="card-title">property4</span>
<p>== 45</p>
</div>
<div class="card-action"><a href="javascript:;" style="color: red;">OR</a><a href="javascript:;" style="color: black;">AND</a><a style="color: gray; cursor: pointer;">EDIT</a></div>
</div>
</div>
<div>
<div class="card bg-color-primary" style="height: 170px; width: 300px; border-color: rgb(30, 144, 255); background-color: white; border-width: 4px;">
<div class="card-content" style="color: black;"><span class="card-title">property4</span>
<p>== 38</p>
</div>
<div class="card-action"><a href="javascript:;" style="color: red;">OR</a><a href="javascript:;" style="color: black;">AND</a><a style="color: gray; cursor: pointer;">EDIT</a></div>
</div>
<div class="card bg-color-primary" style="height: 170px; width: 300px; border-color: rgb(30, 144, 255); background-color: white; border-width: 4px;">
<div class="card-content" style="color: black;"><span class="card-title">property</span>
<p>> 89</p>
</div>
<div class="card-action"><a href="javascript:;" style="color: red;">OR</a><a href="javascript:;" style="color: black;">AND</a><a style="color: gray; cursor: pointer;">EDIT</a></div>
</div>
<div class="card bg-color-primary" style="height: 170px; width: 300px; border-color: rgb(30, 144, 255); background-color: white; border-width: 4px;">
<div class="card-content" style="color: black;"><span class="card-title">property</span>
<p>< 56</p>
</div>
<div class="card-action"><a href="javascript:;" style="color: red;">OR</a><a href="javascript:;" style="color: black;">AND</a><a style="color: gray; cursor: pointer;">EDIT</a></div>
</div>
</div>
</div>
</div>
</div>
<!-- react-empty: 150 -->
<div class="col-sm-1" style="border-width: 3px; border-left-style: solid; border-left-color: rgb(51, 51, 51); margin-bottom: -57px; margin-top: -14px;"></div>
<div class="col-sm-5">
<div class="box box-transparent">
<div class="box-body">
<h5 class="text-primary">THEN: Add or select one or more actions.</h5><br>
<div class="card bg-color-success" style="height: 170px; width: 300px; border-color: green; background-color: white; border-width: 4px;">
<div class="card-content" style="color: black;"><span class="card-title">New Action</span>
<p>Click to edit</p>
</div>
<div class="card-action"><a href="javascript:;" style="color: black;">AND</a><a style="color: gray;">EDIT</a></div>
</div>
</div>
</div>
</div>
</div>
そして私はそれがreactjsとは関係ないと思う。 – HyeonJunOh