css_part28
আলাদা আলাদা
মার্জিন সেটিং করা
Border এর মতই margin এর সাথে left, right , top বা bottom জুড়ে দিয়ে value লিখতে হবে। নিচের মত প্রোগ্রাম তৈরী করুন।
নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী
করুন।
<!DOCTYPE
html>
<html>
<head>
<title> CSS margin properties </title>
<style>
div.redBox{background-color:red;
margin-top:2cm;
margin-bottom:25px;margin-right:10%;margin-left:2cm;}
div.blueBox{background-color:blue;}
</style>
</head>
<body>
<div
class="redBox">This is Nova Computer. This is Nova Computer. This
is Nova Computer. This is Nova Computer.</div>
<div
class="blueBox">This is Nova Computer. This is Nova Computer. This
is Nova Computer. This is Nova Computer.</div>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।
CSS Padding এর ব্যবহার
Padding হচ্ছে border থেকে কত দুরে content থাকবে অর্থ্যাৎ প্রথমে margin
এর জন্য জায়গা
ছাড়বে ব্রাউজার। পরে border এর জন্য জায়গা
ছাড়তে হবে এর পর Padding এর জন্য জায়গা রেখে তারপরে
Content শুরু হবে । মর্জিনের মত value দেওয়া যাবে Length
(px,cm ইত্যাদি) বা পারসেন্টটেজে (%)। Properlyগুলি border, outline বা margin এর মতই। ৪দিকে আলাদা Padding Value দেওয়ার জন্য padding-top padding-bottom,
padding-left বা padding-right ব্যবহার করা যাবে। এছাড়া আগের মতই ১টি মান দিলে সব দিকে, ২টি মান দিলে
প্রথমটি উপরে ও নিচে এবং দ্বিতীয়টি ডান এ বামে, ৩টি মান দিলে প্রথমটি উপরে, দ্বিতীয়টি ডানে এরং তৃতীয়টি
নীচে এভাবে আগের নিয়মেই প্রদর্শিত হবে। চলুন কয়েকটি প্রোগ্রাম তৈরী করে দেখা যাক।
নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী
করুন।
<!DOCTYPE
html>
<html>
<head>
<title>
CSS margin properties </title>
<style>
div.a
{margin:25px; background-color:yellow;
border:5px
solid red; outline:5px green double;}
div.b
{padding:25px; margin:25px; background-color: yellow;border:5px solid red;outline:5px
green double;}
div.c
{padding:10%; margin:25px; background-color: yellow;border:5px solid red;outline:5px
green double;}
div.d{padding:10px
15px 25px 40px; margin:25px; background-color:yellow; border:5px solid red;
outline:5px green double;}
</style></head>
<body>
<div
class="a">This is Nova Computer without padding. This is Nova
Computer. This is Nova Computer. </div>
<div
class="b">This is Nova Computer with padding 25px. This is Nova
Computer. This is Nova Computer. </div>
<div
class="c">This is Nova Computer. This is Nova Computer. This is
Nova Computer. This is Nova Computer.</div>
<div
class="d">This is Nova Computer with different padding. This is
Nova Computer. This is Nova Computer. This is Nova Computer.</div>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।
চারদিকে আলাদা
আলাদা Padding
সংযোজন
এখন আলাদা কোডিংএর মাধ্যমে চারদিকে আলাদা আলাদা Padding সংযোজন করবো। নিচের মত কোডিং করুন।
নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী
করুন।
<!DOCTYPE
html>
<html>
<head>
<title>
CSS margin properties </title>
<style>
div.a{margin:25px;
background-color:yellow;
border:5px
solid red; outline:5px green double;}
div.b{padding-top:25px;padding-bottom:75px;
padding-right:75px;padding-left:25px;margin:25px;
background-color:yellow;border:5px solid red;
outline:5px
green double;}
</style>
</head>
<body>
<div
class="a">This is Nova Computer without padding. This is Nova
Computer. This is Nova Computer. </div>
<div
class="b">This is Nova Computer with different padding 25px. This
is Nova Computer. This is Nova Computer. </div>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।
বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
The
writer of this book has told that he has written this book with the
concept of "teach yourself". On the other hand, Web Design is a thing which is
interesting to learn. He has also told that the book is full of fan and
enjoyment so that a person can learn Web Design by himself by playing with
the example projects of this book. Book's CD Link below...
Next_