0
我真的得弄清楚現在。我希望這張照片能填寫我的col-6。但我怎麼知道圖片的大小應該是多大?我是否應該設置高度?圖片填寫全部col
<div class="row">
<div class="col col-6">
<img src="img/fly_tying.jpg">
</div>
<div class="col col-6">
<form action="flyUpload.php">
<fieldset>
<legend>Upluad Fly</legend>
<label for="name">Name</label>
<input type="text" id="name" value="name"><br>
<label for="category">Category</label>
<input type="text" id="category" value="category"><br>
<label for="fishtype">Fishtype<label>
<input type="text" id="fishtype" value="fishtype"><br>
<button type="submit" value="submitFly">Submit My Fly</button>
</fieldset>
</form>
</div>
</div>
CSS:
.col-6{
width:50%;
}
@GAMITG這不是一個評論,這是我的答案。只需將css img寬度設置爲100%即可。 – Fiido93