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

Saturday, September 3, 2016

css_part16



Character Spacing
প্রতিটি অক্ষরের মধ্যে যে ফাঁকা জায়গা সেটি নিয়ন্ত্রন করা যায়। সাধানণত এটির value নির্ধারণ করা হয় px বা cm দিয়ে। নেগেটিভ ও পজিটিভ ২ধরণের value ব্যবহার করা হয়। পজিটিভ ভ্যালুতে স্পেস বাড়ে এবং নেগেটিভ ভ্যালুতে স্পেস কমে। নিচের মত প্রোগ্রাম তৈরী করে দেখুন।

নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী করুন। 
<!DOCTYPE html>
<html>
<head>
<head>
<title>CSS Text Style properties</title>
<style>
h1 {text-align:center;}
h1.plus {text-align:center;letter-spacing:10px;}
h1.minus {text-align:center;letter-spacing:-5px;}
h4 {text-align:center;text-transform:capitalize;}
</style>
</head>
<body>
<h1>Nova Computer</h1>
<h1 class="plus">Nova Computer</h1>
<h1 class="minus">Nova Computer</h1>
<h4> 50 aziz super market <br />
sahabag, dhaka </h4>
<hr />
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।


Line Spacing
Character Spacing এর মত line এর মধ্যেকার দূরত্ত্ববও কমানো বা বাড়ানো যায়। line height প্রোপার্টি দিয়ে এটি করানো হয়। value হিসাবে px, pt, cm বা % ব্যবহার করা হয়। নিচের মত প্রোগ্রাম তৈরী করুন।

নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী করুন। 
<!DOCTYPE html>
<html>
<head>
<title>CSS Text Style properties</title>
<style>
p.just {text-align:justify;}
p.low {line-height:50%;text-align:justify;}
p.high{line-height:200%;text-align:justify;}
</style>
</head>
<body>
<p class="just">
I beg most respectfully that I an a student of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand theclass.<br />
</p>
<hr />
<p class="low">
I beg most respectfully that I an a student of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand the class.<br /></p>
<hr />
<p class="high">
I beg most respectfully that I an a student of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand theclass.<br />
</p> </body> </html>
Image_CSS032
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।


Word Spacing
Character line এর মত Word এর মধ্যেকার ফাঁকা জায়গা কমানো বা বাড়ানো যাবে। জন্য word-spacing প্রোপার্টি ব্যবহার করে value দিতে হবে। কয়েক লাইনের টেক্সটকে ১ লাইনে দেখার জন্য অর্থ্যাৎ ব্রাউজারে র‌্যাপিং ( wraping ) হবে না এভাবে দেখতে চাইলে white-space প্রোপাটির সাথে value দিতে হবে nowrap.
নিচের প্রোগ্রাম তৈরী করুন।

নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী করুন। 
<!DOCTYPE html>
<html>
<head>
<title>CSS Text Style properties</title>
<style>
p.just {text-align:justify;}
p.word {word-spacing:30px;}
p.nowrap{white-space:nowrap;}
</style>
</head>
<body>
<p class="just">
I beg most respectfully that I an a student of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand theclass.<br /></p>
<hr />
<p class="word">
I beg most respectfully that I an a student of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand theclass.<br /></p>
<hr />
<p class="nowrap">
I beg most respectfully that I an astudent of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand theclass.<br /></p>
</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