float: left;
شناور ساختن جعبه ها
min-width: 600px;
حداقل جعبه
max-width: 100px;
min-width: 600px;
width: 80%
http://www.w3schools.com/cssref/pr_class_clear.asp
clear: both;
no float
overflow: scroll;
----------------------------------------------
list
display:inline
برداشتن خط
text-decoration: none;
a:hover
تنظیمات زمانی که خواهان تغییر قرار دادن موس روی المان باشبم
--------------------------------------------------------
index of first text
text-indent: 50px;
------------------------------------------------------------
فاصله بین حروف
letter-spacing: 2px;
--------------------------------------------------------------
نوشتن بزرگ
text-transform: uppercase;
-------------------------------------------------------------------
گوگل فونت
https://www.google.com/fonts/
-------------------------------------------------------------
p::after {
content: " - Remember this";
}
بعد از هر پارگراف عبارت خاصی را بنویسد
برای اخرین پاراگراف
p:last-child {
background: #ff0000;
}
p:last-child:after {
content: " - Remember this";
}
----------------------------------------------------------
فاصله بین خطوط
p.small {
line-height: 70%;
}
p.big {
line-height: 200%;
}