flexWrap ব্যবহার করুন৷ জাভাস্ক্রিপ্টে প্রপার্টি সেট করে যে নমনীয় আইটেমগুলি জাভাস্ক্রিপ্টের সাথে মোড়ানো উচিত কিনা।
উদাহরণ
আপনি flexWrap বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন জাভাস্ক্রিপ্ট-
-এ সম্পত্তি<!DOCTYPE html>
<html>
<head>
<style>
#box {
border: 1px solid #000000;
width: 120px;
height: 150px;
display: flex;
flex-wrap: wrap;
}
#box div {
height: 50px;
width: 50px;
}
</style>
</head>
<body>
<div id = "box">
<div style = "background-color:orange;">DIV1</div>
<div style = "background-color:blue;">DIV2</div>
<div style = "background-color:yellow;" id = "myID">DIV3</div>
</div>
<p>Using flexWrap property</p>
<button onclick = "display()">Set</button>
<script>
function display() {
document.getElementById("box").style.flexWrap = "nowrap";
}
</script>
</body>
</html>