ওয়েব ডিজাইন (পর্ব ১০) টেবিল , লিস্ট, ব্লক, ক্লাস, আইডি - WikiJana.Com™

ওয়েব ডিজাইন (পর্ব ১০) টেবিল , লিস্ট, ব্লক, ক্লাস, আইডি

আমাদের HTML এ বিভিন্ন সময় বিভিন্ন সময় চেন্জ করতে হয়।আর এই চেন্জ গুলো CSS দ্বারা করা হয় তাই আমরা আজকে টেবিল , লিস্ট, ব্লক , ক্লাস আইডিতে ইউজ করা দেখবো
Please wait 0 seconds...
Scroll Down and click on Go to Link for destination
Congrats! Link is Generated
আস্‌সালামু আলাইকুম! আশা করি আল্লাহ এর অশেষ রহমতে আপনারা সবাই ভালো আছেন।আমিও আপনাদের দোয়াই ভালো আছি। আজকের নতুন টপিকে আপনাকে স্বাগতম! আজকে আপনাদের দেখাবো কিভাবে টেবিল , লিস্ট, ব্লক, ক্লাস আইডিতে CSS ইউজ করবেন।

আমাদের HTML এ বিভিন্ন সময় বিভিন্ন সময় চেন্জ করতে হয়।আর এই চেন্জ গুলো CSS দ্বারা করা হয় তাই আমরা আজকে টেবিল , লিস্ট,  ব্লক , ক্লাস আইডিতে ইউজ করা দেখবো।

টেবিলঃ

টেবিল এ আমাদের বিভিন্ন ডিজাইন করার প্রয়োজন হয় তখন এই নির্দিষ্ট CSS দ্বারা আমরা টেবিল ডিজাইন করে থাকি।যেমন আমাদের টেবিলে যখন ডাবল বর্ডার থাকে তখন আমাদের সিঙ্গেল বর্ডার করার জন্য আমাদের CSS ইউজ করতে হয়।

  <style>
table, td, th {
  border: 1px solid black;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  height: 50px;
}
</style>
<table>
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Earn</th>
  </tr>
  <tr>
    <td>A</td>
    <td>B</td>
    <td>$10</td>
  </tr>
  <tr>
    <td>C</td>
    <td>D</td>
    <td>$15</td>
  </tr>
  <tr>
    <td>E</td>
    <td>F</td>
    <td>$30</td>
  </tr>
  <tr>
    <td>G</td>
    <td>H</td>
    <td>$25</td>
  </tr>
</table>
যদি রো তে ব্যকগ্রাউন্ড কালার দিতে চান তবে এই কোড ইউজ করতে পারবেন।

  tr:nth-child(even) {background-color: #f2f2f2;}

লিস্টঃ

অনেক সময় আমাদের লিস্ট গুলো বিভিন্ন কাজে ইউজ করতে হয়। কোথাও আবার লিস্ট পরিদর্শন না করেও লিস্ট কোড ইউজ করা লাগে এই জন্য এই CSS গুলো ব্যবহার না যেতে পারে।

<style>
ul.a {
  list-style-type: circle;
}

ul.b {
  list-style-type: square;
}

ol.c {
  list-style-type: upper-roman;
}

ol.d {
  list-style-type: lower-alpha;
  
}
ul.demo {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
</style>
<ul class="a">
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ul>

<ul class="b">
  <li>One</li>
  <li>Two</li>
  <li>Coca Cola</li>
</ul>
<ol class="c" start="50">
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ol>

<ol class="d">
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ol>
<ul class="demo">
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ul>

ব্লকঃ

এই ব্লকটা খুব গুরুত্বপূর্ন কারন এই ব্লগ না জানলে আপনি ডিজাইন করতে খুব সমস্যা হবে তাই আপনাকে ইনলাইন ব্লক ও শুধু ব্লক সম্পর্কে জনতেই হবে।

<style>
span.c {
  display: block;
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 1px solid blue;    
  background-color: green; 
}
span.d {
  display: block;
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 1px solid blue;    
  background-color: yellow; 
}
</style>

<span class="c">Samrat</span> <span class="c">Raihan</span>
<br>
<span class="d">Samrat</span> <span class="d">Raihan</span>

 ক্লাস আইডিঃ

ক্লাস আর আইডি দুইটাই আলাদা জিনিস তবে একই কাজের।
ক্লাস গুলো আপনি হাজার জায়গা ইউজ করতে পারবেন তবে ক্লাস টা শুধু একটা জায়গা ইউজ করতে হয়। এইটাই পার্থক্য।


Class= . (dot) , ID= # (Hashtag)


  <style>
#myHeader {
  background-color: lightblue;
  color: black;
  padding: 40px;
  text-align: center;
}
.pgraph {
  background-color: tomato;
  color: white;
  padding: 10px;
}
</style>

<h1 id="myHeader">Lorem Ipsum</h1>

<h2 class="pgraph">What is Lorem Ipsum?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>

<h2 class="pgraph">Why do we use it?</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>

<h2 class="pgraph">Where does it come from?</h2>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
</p>
 এই আর্টিকেল টি পুরোটা পড়ার জন্য আপনাকে অনেক ধন্যবাদ, এই আর্টিকেল যদি বুঝতে অসুবিধা হয় অথবা কোনো প্রশ্ন থাকে তবে কমেন্ট করুন, আশা করি আপনি উত্তর পাবেন।আর নতুুন কিছু জানার থাকলে আমাদের জানান আমরা জানানোর চেস্টা করবো। এই আর্টিকেলটি WikiJana.Com সাইটের সম্পদ তাই যদি কেউ কপি করেন তবে আপনারা অবশ্যই ক্রেডিট দিবেন নয়ত আপনার সাইট কপিরাইটের অধিনে চলে যেতে পারে। 

About the Author

I am a web designer and developer. I regularly work for different companies. I try to write a little on this blog when I have time. If you can learn something from this blog, then I will be successful.
I have a blog for learning web design, the nam…

একটি মন্তব্য পোস্ট করুন

কোনো প্রশ্ন থাকলে অনুগ্রহ করে বিস্তারিত ভাবে বলুন, আশা করি আমরা আপনাকে হেল্প করতে পারবো।তবে অনুগ্রহ করে স্পাম করবেন না।
একটি মন্তব্য পোস্ট করুন

All information presented on this website is collected from internet. We may make unintentional mistakes while writing the post. We sincerely apologize for any unpleasant mistakes and WikiJana.Com is not responsible for any incorrect information. If you see any incorrect information please let us know immediately. We will try to fix it as soon as possible. Click here to report.

Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.