know yourselves. information, computer, 7 wonders, various.

Friday, March 13, 2020

css_part36





CSS Align এর ব্যবহার
Text অংশে কিভাবে text align করতে হয় এ বিষয়ে আমরা বিস্তারিত জেনেছি এখন আমরা Block এলিমেন্টকে align কমান্ড ছাড়া Margin বা Float ব্যবহার করে  align করা দেখাবো। এক্ষেত্রে মনে রাখবেন <!Doctype html> অবশ্যই ডিক্লেয়ার করতে হবে  না হলে সব ব্রাউজার ঠিকমত ফলাফল দেখাতে পারবে না।
Margin ব্যবহারে Center Align করা
block এলিমেন্টকে margin:auto সিলেক্ট করে অ্যালাইন করা যাবে এবং Width এর একটি Percent সিলেক্ট করে দিলে সংশিষ্ট Width এর ডানে ও বামে সমান জায়গা থাকবে। কাজেই এটি  center align  হবে। নিচের প্রোগ্রাম লক্ষ্য করুন।

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<title> CSS margin and float properties </title>
<style>
.mid{margin:auto;width:70%;background-color:#b0e0e6;}
</style>
</head>
<body>
<div class="mid">
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
</div>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।



সকল ব্রাউজারে প্রর্দশন উপোযোগী করা
অনেক সময় দেখা যায় এই প্রোপার্টি ব্যবহারের কারণে সব ব্রাউজার সমানভাবে রেজাল্ট দেখাতে পারে না এজন্য কিছু অতিরিক্ত কোড সংযোগ করতে হতে পারে যেমন এখানের এই কোডটি একটি <div> এর মধ্যে ব্যবহার করা হয়েছে। সর্ম্পূন এলাকা নির্ধারণের জন্য আলাদা একটি বড় <div> তৈরী করে এর মধ্যে এই <div> টি প্রর্দশন করলে আর সমস্যা থাকবে না আর <!Doctype> অবশ্যই ডিক্লেয়ার করে নিতে হবে। নিচের প্রোগ্রাম লক্ষ্য করুন।

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head><title> CSS margin and float properties</title>
<style>
.wrapper{text-align:center;}
.mid{margin:auto;width:70%;background-color:#b0e0e6;}
</style></head>
<body>
<div class="wrapper">
<div class="mid">
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
</div>
</div></body></html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।


Position প্রোপার্টি ব্যবহারে Align করা
Absolute প্রোপার্টি দ্বারা Normal Flow কে বাদ দিয়ে এলিমেন্টকে নিয়স্ত্রন করা যাবে। নিচের প্রোগ্রাম লক্ষ্য করুন।

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<title> CSS margin and float properties </title>
<style>
.right { position:absolute; right:0px; width:400px;
background-color:#b0e0e6; }
</style></head>
<body>
<div class="right">
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
</div>
</body></html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।


Previous Post                                                                                           Next Post

  বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।

Book Name: Mastering Microsoft  Word
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... 

 cd


RELATED POST LINKS BELOW ********************************************
Next_


Part- 02:  Inline Style