SlideShare a Scribd company logo
Ki n th c b xung cho ph n CSSế ứ ổ ầ
1. Đ nh nghĩa hi n th theo deviceị ể ị
- M t file css khi đ c link có th đ nh nghĩa hi n th đó áp d ng cho lo i device nào, b ngộ ượ ể ị ể ị ụ ạ ằ
cách s d ng atttribute trong th link nh sau:ử ụ ẻ ư
<link rel="stylesheet" media="mediatype and|not|only (media feature)" href="mystylesheet.css">
Trong đó:
Media Types
Value Description
all Used for all media type devices
aural Deprecated. Used for speech and sound synthesizers
braille Deprecated. Used for braille tactile feedback devices
embossed Deprecated. Used for paged braille printers
handheld Cho các thi t b c m tay nhế ị ầ ỏ
print Cho máy in
projection Cho máy chi uế
screen Màn hình máy tính, tablet, smart phone
speech Cho các thi t b đ c tài li uế ị ọ ệ
tty
tv Cho các tv internet
Media Features
Value Description
aspect-ratio Specifies the ratio between the width and the height of the display area
color Specifies the number of bits per color component for the output device
color-index Specifies the number of colors the device can display
device-aspect-ratio Specifies the ratio between the width and the height of the device
device-height Specifies the height of the device, such as a computer screen
device-width Specifies the width of the device, such as a computer screen
grid Specifies whether the device is a grid device or not
height Specifies the height of the display area, such as a browser window
max-aspect-ratio
Specifies the maximum ratio between the width and the height of the
display area
max-color
Specifies the maximum number of bits per color component for the output
device
max-color-index Specifies the maximum number of colors the device can display
max-device-aspect-ratio
Specifies the maximum ratio between the width and the height of the
device
max-device-height Specifies the maximum height of the device, such as a computer screen
max-device-width Specifies the maximum width of the device, such as a computer screen
max-height
Specifies the maximum height of the display area, such as a browser
window
max-monochrome
Specifies the maximum number of bits per "color" on a monochrome
(greyscale) device
max-resolution Specifies the maximum resolution of the device, using dpi or dpcm
max-width
Specifies the maximum width of the display area, such as a browser
window
min-aspect-ratio
Specifies the minimum ratio between the width and the height of the
display area
min-color
Specifies the minimum number of bits per color component for the output
device
min-color-index Specifies the minimum number of colors the device can display
min-device-aspect-ratio
Specifies the minimum ratio between the width and the height of the
device
min-device-width Specifies the minimum width of the device, such as a computer screen
min-device-height Specifies the minimum height of the device, such as a computer screen
min-height
Specifies the minimum height of the display area, such as a browser
window
min-monochrome
Specifies the minimum number of bits per "color" on a monochrome
(greyscale) device
min-resolution Specifies the minimum resolution of the device, using dpi or dpcm
min-width
Specifies the minimum width of the display area, such as a browser
window
monochrome
Specifies the number of bits per "color" on a monochrome (greyscale)
device
orientation Specifies the whether the display is in landscape mode or portrait mode
resolution Specifies the resolution of the device, using dpi or dpcm
scan Specifies progressive or interlaced scanning of a television
width Specifies the width of the display area, such as a browser window
Ví d :ụ
<!-- S d ng cho t t c -->ử ụ ấ ả
<link rel="stylesheet" media="all" href="style.css">
<!-- Ch dùng cho máy in -->ỉ
<link rel="stylesheet" media="print" href="style.css">
<!-- S d ng cho màn hình máy tính, tablet, smart phone, tv và máy in -->ử ụ
<link rel="stylesheet" media="screen, print, tv" href="style.css">
<!-- S d ng cho màn hình máy tính, tablet, smart phone và b gi i h n kích th c màn t 701ử ụ ị ớ ạ ướ ừ
đ n 900px -->ế
<link rel='stylesheet' media='screen and (min-width: 701px) and (max-width: 900px)'
href='css/medium.css' />
- Ngoài cách s d ng thông qua th link ra, chúng ta còn có th s d ng thông qua đ nhử ụ ẻ ể ử ụ ị
nghĩa CSS.
@media not|only mediatype and (media feature) {
CSS-Code;
}
Ví d :ụ
@media only screen and (min-width: 701px) and (max-width: 900px) {
/* Các đ nh nghĩa n m trong block này, s đ c áp d ng cho các màn hình có kích th c 7001-ị ằ ẽ ượ ụ ướ
900 */
.gridmenu {
width:100%;
}
.gridmain {
width:100%;
}
.gridright {
width:100%;
}
}
Chú ý: Nhi u đi u ki n s đ c cách nhau b i d u ph y. Ví d :ề ề ệ ẽ ượ ở ấ ẩ ụ
@media all and (max-width: 699px) and (min-width: 520px), (min-width: 1151px) {
body {
background: #ccc;
}
}
B ng cách s d ng media và các th thu t css ng i ta sinh ra khái ni m Responsive Webằ ử ụ ủ ậ ườ ệ
Design. T c là web đ c thi t k và phù h p v i m i lo i thi t b hi n th .ứ ượ ế ế ợ ớ ọ ạ ế ị ể ị
2. Import CSS
- M t file css có th import các file css khác vào nó đ s d ng các đ nh nghĩa style t các file đó.ộ ể ể ử ụ ị ừ
Quy t c:ắ
@import url;
ho cặ
@import url list-of-media-queries;
Ví d :ụ
@import url("fineprint.css") print;
@import url("bluish.css") projection, tv;
@import 'custom.css';
@import url("chrome://communicator/skin/");
@import "common.css" screen, projection;
@import url('landscape.css') screen and (orientation:landscape);
3. Các hi u ng CSS và tools c n bi tệ ứ ầ ế
# Effect Note Tools
1 Border radius Bo tròn góc http://border-radius.com/
ho cặ
http://www.cssmatic.com/border-radius
2 Text drop shadown Hi u ng đ bóng choệ ứ ổ http://css3gen.com/text-shadow/
chữ
3 Box drop shadown Hi u ng đ bóng choệ ứ ổ
box
http://css3gen.com/box-shadow/
ho cặ
http://www.cssmatic.com/box-shadow
4 Gradient Màu n n chuy nề ể http://www.colorzilla.com/gradient-editor/
ho cặ
http://www.cssmatic.com/gradient-generator
ho cặ
http://css3gen.com/gradient-generator/
5 Button Các m u button đ pẫ ẹ http://www.bestcssbuttongenerator.com/
ho cặ
http://css-button-generator.com/
6 Transform
Generator
http://css3gen.com/css-transform/
7 Animation Hi u ng ho t hìnhệ ứ ạ
cho web
http://css3gen.com/css3-animation/
ho cặ
http://cssanimate.com/
8 Transition Hi u ng chuy nệ ứ ể http://css3gen.com/css-transition/#csstransition
ho cặ
http://css3generator.com/
9 Column T o c t n i dungạ ộ ộ
gi ng báoố
http://css3gen.com/css3-multi-column-
generator
10 Text effect D a trên text shadownự
sinh ra các hi u ngệ ứ
text đ pẹ
http://css3gen.com/css3-text-effects/
11 Flex box D ng nhanh layoutự
theo flex box
http://css3gen.com/css3-flexbox/
12 Icon font http://fortawesome.github.io/Font-Awesome/
4. HTML Entities
- HTML Entity là mã hóa c a các ký t đ c bi t vi t trong HTML. Các ký t đ c bi t này đ củ ự ặ ệ ế ự ặ ệ ượ
mã hóa đ tránh m t s l i hi n th và trùng l p v i các th đóng và th m c a HTML. Ví d :ể ộ ố ỗ ể ị ặ ớ ẻ ẻ ở ủ ụ
< có mã là &lt;
> có mã là &gt;
Ký t tr ng là &nbsp;ự ắ
Tham kh o thêm: http://www.w3schools.com/html/html_entities.aspả
5. URL Encoding
- Url s d ng mã ASCIIử ụ
- Mu n g i các ký t đ c bi t qua URL (ph ng th c GET) thì c n ph i mã hóa các ký t này,ố ử ự ặ ệ ươ ứ ầ ả ự
đ mã hóa các ký t đ c bi t không n m trong b ng ký t ASCII ng i ta g i là URL encoding.ể ự ặ ệ ằ ả ự ườ ọ
Tham kh o thêm: http://www.w3schools.com/tags/ref_urlencode.aspả

More Related Content

Viewers also liked

My resume
My resumeMy resume
My resume
Hà Lê
 
LeThanhNhan_resume
LeThanhNhan_resumeLeThanhNhan_resume
LeThanhNhan_resumeNhan Le
 
Cv vo thikimhong
Cv vo thikimhongCv vo thikimhong
Cv vo thikimhong
Thế Hưng
 
CV_TranQuangVu_EN_MOD
CV_TranQuangVu_EN_MODCV_TranQuangVu_EN_MOD
CV_TranQuangVu_EN_MODVu Tran
 
Trung.Vu_CV
Trung.Vu_CVTrung.Vu_CV
Trung.Vu_CVVu Trung
 
CV - Pham Hong Anh Eng
CV - Pham Hong Anh EngCV - Pham Hong Anh Eng
CV - Pham Hong Anh EngHonganh Pham
 

Viewers also liked (9)

My resume
My resumeMy resume
My resume
 
LeThanhNhan_resume
LeThanhNhan_resumeLeThanhNhan_resume
LeThanhNhan_resume
 
Cv vo thikimhong
Cv vo thikimhongCv vo thikimhong
Cv vo thikimhong
 
CV_TranQuangVu_EN_MOD
CV_TranQuangVu_EN_MODCV_TranQuangVu_EN_MOD
CV_TranQuangVu_EN_MOD
 
Curriculum Vitae
Curriculum Vitae Curriculum Vitae
Curriculum Vitae
 
cv
cvcv
cv
 
Trung.Vu_CV
Trung.Vu_CVTrung.Vu_CV
Trung.Vu_CV
 
curriculum_Daniel
curriculum_Danielcurriculum_Daniel
curriculum_Daniel
 
CV - Pham Hong Anh Eng
CV - Pham Hong Anh EngCV - Pham Hong Anh Eng
CV - Pham Hong Anh Eng
 

Similar to Kiến thức bổ trợ CSS

Convert psd to html5
Convert psd to html5Convert psd to html5
Convert psd to html5
Tôn Thất Kỳ
 
Convert psd to html5
Convert psd to html5Convert psd to html5
Convert psd to html5
Kim Hyun Hai
 
Convert psd to html5 nhất nghệ - hoclaptrinhweb.com
Convert psd to html5 nhất nghệ - hoclaptrinhweb.comConvert psd to html5 nhất nghệ - hoclaptrinhweb.com
Convert psd to html5 nhất nghệ - hoclaptrinhweb.comMasterCode.vn
 
Convert psd to html5
Convert psd to html5Convert psd to html5
Convert psd to html5Tien Van
 
Tài liệu HTML5-CSS3
Tài liệu HTML5-CSS3Tài liệu HTML5-CSS3
Tài liệu HTML5-CSS3
Lương Bá Hợp
 
Giáo trình asp.net với c sharp
Giáo trình asp.net với c sharpGiáo trình asp.net với c sharp
Giáo trình asp.net với c sharp
Trần Văn Sáng Trần
 
BÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPT
BÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPTBÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPT
BÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPT
MasterCode.vn
 
lap-trinh-mang-voi-c#
lap-trinh-mang-voi-c#lap-trinh-mang-voi-c#
lap-trinh-mang-voi-c#
Truong NGUYEN
 
Lap trinhmang(socket)c#
Lap trinhmang(socket)c#Lap trinhmang(socket)c#
Lap trinhmang(socket)c#
cozyhome0923
 
Network Programming in C#
Network Programming in C#Network Programming in C#
Network Programming in C#
jvinhit
 
Bai giang lap trinhmang voi c#
Bai giang lap trinhmang voi c#Bai giang lap trinhmang voi c#
Bai giang lap trinhmang voi c#
nttrang9090
 
Trần Anh Khoa - Kautilya và Powershell trong kỹ thuật tấn công tiếp cận
Trần Anh Khoa - Kautilya và Powershelltrong kỹ thuật tấn công tiếp cậnTrần Anh Khoa - Kautilya và Powershelltrong kỹ thuật tấn công tiếp cận
Trần Anh Khoa - Kautilya và Powershell trong kỹ thuật tấn công tiếp cận
Security Bootcamp
 
Baigiang css
Baigiang cssBaigiang css
Baigiang css
hmtsystem
 
Web Responsive & SEO
Web Responsive & SEOWeb Responsive & SEO
Web Responsive & SEO
Phenix Chen
 
Lập trình web đại học tài nguyên môi trường
Lập trình web   đại học tài nguyên môi trườngLập trình web   đại học tài nguyên môi trường
Lập trình web đại học tài nguyên môi trườngKiên Thỏ
 
Bat dau hoc lap trinh asp
Bat dau hoc lap trinh aspBat dau hoc lap trinh asp
Bat dau hoc lap trinh asp
Lam To
 
Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]
Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]
Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]
www.thegioitongdai .com.vn
 
Giải pháp tổng quan thiết bị hội nghị truyền hình polycom
Giải pháp tổng quan thiết bị hội nghị truyền hình polycomGiải pháp tổng quan thiết bị hội nghị truyền hình polycom
Giải pháp tổng quan thiết bị hội nghị truyền hình polycom
SAVITEL
 
Windows Presentation Foundation
Windows Presentation FoundationWindows Presentation Foundation
Windows Presentation Foundation
quyloc
 

Similar to Kiến thức bổ trợ CSS (20)

Convert psd to html5
Convert psd to html5Convert psd to html5
Convert psd to html5
 
Convert psd to html5
Convert psd to html5Convert psd to html5
Convert psd to html5
 
Convert psd to html5 nhất nghệ - hoclaptrinhweb.com
Convert psd to html5 nhất nghệ - hoclaptrinhweb.comConvert psd to html5 nhất nghệ - hoclaptrinhweb.com
Convert psd to html5 nhất nghệ - hoclaptrinhweb.com
 
Convert psd to html5
Convert psd to html5Convert psd to html5
Convert psd to html5
 
Tài liệu HTML5-CSS3
Tài liệu HTML5-CSS3Tài liệu HTML5-CSS3
Tài liệu HTML5-CSS3
 
Giáo trình asp.net với c sharp
Giáo trình asp.net với c sharpGiáo trình asp.net với c sharp
Giáo trình asp.net với c sharp
 
BÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPT
BÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPTBÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPT
BÀI 1 Giới thiệu những khía cạnh tổng quan về thiết kế web - Giáo trình FPT
 
lap-trinh-mang-voi-c#
lap-trinh-mang-voi-c#lap-trinh-mang-voi-c#
lap-trinh-mang-voi-c#
 
Lap trinhmang(socket)c#
Lap trinhmang(socket)c#Lap trinhmang(socket)c#
Lap trinhmang(socket)c#
 
Network Programming in C#
Network Programming in C#Network Programming in C#
Network Programming in C#
 
Bai giang lap trinhmang voi c#
Bai giang lap trinhmang voi c#Bai giang lap trinhmang voi c#
Bai giang lap trinhmang voi c#
 
Trần Anh Khoa - Kautilya và Powershell trong kỹ thuật tấn công tiếp cận
Trần Anh Khoa - Kautilya và Powershelltrong kỹ thuật tấn công tiếp cậnTrần Anh Khoa - Kautilya và Powershelltrong kỹ thuật tấn công tiếp cận
Trần Anh Khoa - Kautilya và Powershell trong kỹ thuật tấn công tiếp cận
 
Baigiang css
Baigiang cssBaigiang css
Baigiang css
 
Web Responsive & SEO
Web Responsive & SEOWeb Responsive & SEO
Web Responsive & SEO
 
How to web responsive
How to web responsiveHow to web responsive
How to web responsive
 
Lập trình web đại học tài nguyên môi trường
Lập trình web   đại học tài nguyên môi trườngLập trình web   đại học tài nguyên môi trường
Lập trình web đại học tài nguyên môi trường
 
Bat dau hoc lap trinh asp
Bat dau hoc lap trinh aspBat dau hoc lap trinh asp
Bat dau hoc lap trinh asp
 
Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]
Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]
Giải pháp viễn thông tổng thể openscape voice [thegioitongdai.com.vn]
 
Giải pháp tổng quan thiết bị hội nghị truyền hình polycom
Giải pháp tổng quan thiết bị hội nghị truyền hình polycomGiải pháp tổng quan thiết bị hội nghị truyền hình polycom
Giải pháp tổng quan thiết bị hội nghị truyền hình polycom
 
Windows Presentation Foundation
Windows Presentation FoundationWindows Presentation Foundation
Windows Presentation Foundation
 

More from Nguyễn Tuấn Quỳnh

Hướng dẫn lập trình web với PHP - Ngày 6
Hướng dẫn lập trình web với PHP - Ngày 6Hướng dẫn lập trình web với PHP - Ngày 6
Hướng dẫn lập trình web với PHP - Ngày 6
Nguyễn Tuấn Quỳnh
 
Hướng dẫn lập trình web với PHP - Ngày 5
Hướng dẫn lập trình web với PHP - Ngày 5Hướng dẫn lập trình web với PHP - Ngày 5
Hướng dẫn lập trình web với PHP - Ngày 5
Nguyễn Tuấn Quỳnh
 
Hướng dẫn lập trình web với PHP - Ngày 4
Hướng dẫn lập trình web với PHP - Ngày 4Hướng dẫn lập trình web với PHP - Ngày 4
Hướng dẫn lập trình web với PHP - Ngày 4
Nguyễn Tuấn Quỳnh
 
Hướng dẫn lập trình web với PHP - Ngày 3
Hướng dẫn lập trình web với PHP - Ngày 3Hướng dẫn lập trình web với PHP - Ngày 3
Hướng dẫn lập trình web với PHP - Ngày 3
Nguyễn Tuấn Quỳnh
 
Hướng dẫn lập trình web với PHP - Ngày 2
Hướng dẫn lập trình web với PHP - Ngày 2Hướng dẫn lập trình web với PHP - Ngày 2
Hướng dẫn lập trình web với PHP - Ngày 2
Nguyễn Tuấn Quỳnh
 
Hướng dẫn lập trình web với PHP - Ngày 1
Hướng dẫn lập trình web với PHP - Ngày 1Hướng dẫn lập trình web với PHP - Ngày 1
Hướng dẫn lập trình web với PHP - Ngày 1
Nguyễn Tuấn Quỳnh
 
Giới thiệu Yii Framework 1
Giới thiệu Yii Framework 1Giới thiệu Yii Framework 1
Giới thiệu Yii Framework 1
Nguyễn Tuấn Quỳnh
 
Đề cương thi công chức 2014 môn Tin học
Đề cương thi công chức 2014 môn Tin học Đề cương thi công chức 2014 môn Tin học
Đề cương thi công chức 2014 môn Tin học
Nguyễn Tuấn Quỳnh
 

More from Nguyễn Tuấn Quỳnh (8)

Hướng dẫn lập trình web với PHP - Ngày 6
Hướng dẫn lập trình web với PHP - Ngày 6Hướng dẫn lập trình web với PHP - Ngày 6
Hướng dẫn lập trình web với PHP - Ngày 6
 
Hướng dẫn lập trình web với PHP - Ngày 5
Hướng dẫn lập trình web với PHP - Ngày 5Hướng dẫn lập trình web với PHP - Ngày 5
Hướng dẫn lập trình web với PHP - Ngày 5
 
Hướng dẫn lập trình web với PHP - Ngày 4
Hướng dẫn lập trình web với PHP - Ngày 4Hướng dẫn lập trình web với PHP - Ngày 4
Hướng dẫn lập trình web với PHP - Ngày 4
 
Hướng dẫn lập trình web với PHP - Ngày 3
Hướng dẫn lập trình web với PHP - Ngày 3Hướng dẫn lập trình web với PHP - Ngày 3
Hướng dẫn lập trình web với PHP - Ngày 3
 
Hướng dẫn lập trình web với PHP - Ngày 2
Hướng dẫn lập trình web với PHP - Ngày 2Hướng dẫn lập trình web với PHP - Ngày 2
Hướng dẫn lập trình web với PHP - Ngày 2
 
Hướng dẫn lập trình web với PHP - Ngày 1
Hướng dẫn lập trình web với PHP - Ngày 1Hướng dẫn lập trình web với PHP - Ngày 1
Hướng dẫn lập trình web với PHP - Ngày 1
 
Giới thiệu Yii Framework 1
Giới thiệu Yii Framework 1Giới thiệu Yii Framework 1
Giới thiệu Yii Framework 1
 
Đề cương thi công chức 2014 môn Tin học
Đề cương thi công chức 2014 môn Tin học Đề cương thi công chức 2014 môn Tin học
Đề cương thi công chức 2014 môn Tin học
 

Recently uploaded

98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...
98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...
98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...
Nguyen Thanh Tu Collection
 
Ngân hàng điện tử số ptit - giảng viên cô Hà
Ngân hàng điện tử số ptit - giảng viên cô HàNgân hàng điện tử số ptit - giảng viên cô Hà
Ngân hàng điện tử số ptit - giảng viên cô Hà
onLongV
 
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...
Nguyen Thanh Tu Collection
 
Chương 3 Linh kien ban dan và KD dien tu - Copy.ppt
Chương 3 Linh kien ban dan và KD dien tu - Copy.pptChương 3 Linh kien ban dan và KD dien tu - Copy.ppt
Chương 3 Linh kien ban dan và KD dien tu - Copy.ppt
PhiTrnHngRui
 
ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2
ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2
ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2
nhanviet247
 
Ảnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nay
Ảnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nayẢnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nay
Ảnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nay
chinhkt50
 
AV6 - PIE CHART WRITING skill in english
AV6 - PIE CHART WRITING skill in englishAV6 - PIE CHART WRITING skill in english
AV6 - PIE CHART WRITING skill in english
Qucbo964093
 
HỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docx
HỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docxHỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docx
HỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docx
giangnguyen312210254
 
Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...
Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...
Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...
https://www.facebook.com/garmentspace
 
PowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptx
PowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptxPowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptx
PowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptx
PhuongMai559533
 
Dẫn luận ngôn ngữ - Tu vung ngu nghia.pptx
Dẫn luận ngôn ngữ - Tu vung ngu nghia.pptxDẫn luận ngôn ngữ - Tu vung ngu nghia.pptx
Dẫn luận ngôn ngữ - Tu vung ngu nghia.pptx
nvlinhchi1612
 
Chuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTU
Chuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTUChuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTU
Chuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTU
nvlinhchi1612
 
Chương III (Nội dung vẽ sơ đồ tư duy chương 3)
Chương III (Nội dung vẽ sơ đồ tư duy chương 3)Chương III (Nội dung vẽ sơ đồ tư duy chương 3)
Chương III (Nội dung vẽ sơ đồ tư duy chương 3)
duykhoacao
 
30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf
30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf
30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf
ngocnguyensp1
 

Recently uploaded (14)

98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...
98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...
98 BÀI LUYỆN NGHE TUYỂN SINH VÀO LỚP 10 TIẾNG ANH DẠNG TRẮC NGHIỆM 4 CÂU TRẢ ...
 
Ngân hàng điện tử số ptit - giảng viên cô Hà
Ngân hàng điện tử số ptit - giảng viên cô HàNgân hàng điện tử số ptit - giảng viên cô Hà
Ngân hàng điện tử số ptit - giảng viên cô Hà
 
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...
CHUYÊN ĐỀ BỒI DƯỠNG HỌC SINH GIỎI KHOA HỌC TỰ NHIÊN 9 CHƯƠNG TRÌNH MỚI - PHẦN...
 
Chương 3 Linh kien ban dan và KD dien tu - Copy.ppt
Chương 3 Linh kien ban dan và KD dien tu - Copy.pptChương 3 Linh kien ban dan và KD dien tu - Copy.ppt
Chương 3 Linh kien ban dan và KD dien tu - Copy.ppt
 
ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2
ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2
ÔN-TẬP-CHƯƠNG1 Lịch sử đảng Việt Nam chủ đề 2
 
Ảnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nay
Ảnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nayẢnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nay
Ảnh hưởng của nhân sinh quan Phật giáo đến đời sống tinh thần Việt Nam hiện nay
 
AV6 - PIE CHART WRITING skill in english
AV6 - PIE CHART WRITING skill in englishAV6 - PIE CHART WRITING skill in english
AV6 - PIE CHART WRITING skill in english
 
HỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docx
HỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docxHỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docx
HỆ THỐNG 432 CÂU HỎI TRẮC NGHIỆM MÔN TTHCM.docx
 
Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...
Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...
Khoá luận tốt nghiệp ngành Truyền thông đa phương tiện Xây dựng kế hoạch truy...
 
PowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptx
PowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptxPowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptx
PowerPoint Đuổi hình bắt chữ. hay vui có thưognrpptx
 
Dẫn luận ngôn ngữ - Tu vung ngu nghia.pptx
Dẫn luận ngôn ngữ - Tu vung ngu nghia.pptxDẫn luận ngôn ngữ - Tu vung ngu nghia.pptx
Dẫn luận ngôn ngữ - Tu vung ngu nghia.pptx
 
Chuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTU
Chuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTUChuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTU
Chuong 2 Ngu am hoc - Dẫn luận ngôn ngữ - FTU
 
Chương III (Nội dung vẽ sơ đồ tư duy chương 3)
Chương III (Nội dung vẽ sơ đồ tư duy chương 3)Chương III (Nội dung vẽ sơ đồ tư duy chương 3)
Chương III (Nội dung vẽ sơ đồ tư duy chương 3)
 
30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf
30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf
30 - ĐỀ THI HSG - HÓA HỌC 9 - NĂM HỌC 2021 - 2022.pdf
 

Kiến thức bổ trợ CSS

  • 1. Ki n th c b xung cho ph n CSSế ứ ổ ầ 1. Đ nh nghĩa hi n th theo deviceị ể ị - M t file css khi đ c link có th đ nh nghĩa hi n th đó áp d ng cho lo i device nào, b ngộ ượ ể ị ể ị ụ ạ ằ cách s d ng atttribute trong th link nh sau:ử ụ ẻ ư <link rel="stylesheet" media="mediatype and|not|only (media feature)" href="mystylesheet.css"> Trong đó: Media Types Value Description all Used for all media type devices aural Deprecated. Used for speech and sound synthesizers braille Deprecated. Used for braille tactile feedback devices embossed Deprecated. Used for paged braille printers handheld Cho các thi t b c m tay nhế ị ầ ỏ print Cho máy in projection Cho máy chi uế screen Màn hình máy tính, tablet, smart phone speech Cho các thi t b đ c tài li uế ị ọ ệ tty tv Cho các tv internet Media Features Value Description aspect-ratio Specifies the ratio between the width and the height of the display area color Specifies the number of bits per color component for the output device color-index Specifies the number of colors the device can display device-aspect-ratio Specifies the ratio between the width and the height of the device device-height Specifies the height of the device, such as a computer screen device-width Specifies the width of the device, such as a computer screen grid Specifies whether the device is a grid device or not height Specifies the height of the display area, such as a browser window max-aspect-ratio Specifies the maximum ratio between the width and the height of the display area max-color Specifies the maximum number of bits per color component for the output device max-color-index Specifies the maximum number of colors the device can display max-device-aspect-ratio Specifies the maximum ratio between the width and the height of the device max-device-height Specifies the maximum height of the device, such as a computer screen max-device-width Specifies the maximum width of the device, such as a computer screen max-height Specifies the maximum height of the display area, such as a browser window
  • 2. max-monochrome Specifies the maximum number of bits per "color" on a monochrome (greyscale) device max-resolution Specifies the maximum resolution of the device, using dpi or dpcm max-width Specifies the maximum width of the display area, such as a browser window min-aspect-ratio Specifies the minimum ratio between the width and the height of the display area min-color Specifies the minimum number of bits per color component for the output device min-color-index Specifies the minimum number of colors the device can display min-device-aspect-ratio Specifies the minimum ratio between the width and the height of the device min-device-width Specifies the minimum width of the device, such as a computer screen min-device-height Specifies the minimum height of the device, such as a computer screen min-height Specifies the minimum height of the display area, such as a browser window min-monochrome Specifies the minimum number of bits per "color" on a monochrome (greyscale) device min-resolution Specifies the minimum resolution of the device, using dpi or dpcm min-width Specifies the minimum width of the display area, such as a browser window monochrome Specifies the number of bits per "color" on a monochrome (greyscale) device orientation Specifies the whether the display is in landscape mode or portrait mode resolution Specifies the resolution of the device, using dpi or dpcm scan Specifies progressive or interlaced scanning of a television width Specifies the width of the display area, such as a browser window Ví d :ụ <!-- S d ng cho t t c -->ử ụ ấ ả <link rel="stylesheet" media="all" href="style.css"> <!-- Ch dùng cho máy in -->ỉ <link rel="stylesheet" media="print" href="style.css"> <!-- S d ng cho màn hình máy tính, tablet, smart phone, tv và máy in -->ử ụ <link rel="stylesheet" media="screen, print, tv" href="style.css"> <!-- S d ng cho màn hình máy tính, tablet, smart phone và b gi i h n kích th c màn t 701ử ụ ị ớ ạ ướ ừ đ n 900px -->ế <link rel='stylesheet' media='screen and (min-width: 701px) and (max-width: 900px)' href='css/medium.css' /> - Ngoài cách s d ng thông qua th link ra, chúng ta còn có th s d ng thông qua đ nhử ụ ẻ ể ử ụ ị nghĩa CSS. @media not|only mediatype and (media feature) { CSS-Code; }
  • 3. Ví d :ụ @media only screen and (min-width: 701px) and (max-width: 900px) { /* Các đ nh nghĩa n m trong block này, s đ c áp d ng cho các màn hình có kích th c 7001-ị ằ ẽ ượ ụ ướ 900 */ .gridmenu { width:100%; } .gridmain { width:100%; } .gridright { width:100%; } } Chú ý: Nhi u đi u ki n s đ c cách nhau b i d u ph y. Ví d :ề ề ệ ẽ ượ ở ấ ẩ ụ @media all and (max-width: 699px) and (min-width: 520px), (min-width: 1151px) { body { background: #ccc; } } B ng cách s d ng media và các th thu t css ng i ta sinh ra khái ni m Responsive Webằ ử ụ ủ ậ ườ ệ Design. T c là web đ c thi t k và phù h p v i m i lo i thi t b hi n th .ứ ượ ế ế ợ ớ ọ ạ ế ị ể ị 2. Import CSS - M t file css có th import các file css khác vào nó đ s d ng các đ nh nghĩa style t các file đó.ộ ể ể ử ụ ị ừ Quy t c:ắ @import url; ho cặ @import url list-of-media-queries; Ví d :ụ @import url("fineprint.css") print; @import url("bluish.css") projection, tv; @import 'custom.css'; @import url("chrome://communicator/skin/"); @import "common.css" screen, projection; @import url('landscape.css') screen and (orientation:landscape); 3. Các hi u ng CSS và tools c n bi tệ ứ ầ ế # Effect Note Tools 1 Border radius Bo tròn góc http://border-radius.com/ ho cặ http://www.cssmatic.com/border-radius 2 Text drop shadown Hi u ng đ bóng choệ ứ ổ http://css3gen.com/text-shadow/
  • 4. chữ 3 Box drop shadown Hi u ng đ bóng choệ ứ ổ box http://css3gen.com/box-shadow/ ho cặ http://www.cssmatic.com/box-shadow 4 Gradient Màu n n chuy nề ể http://www.colorzilla.com/gradient-editor/ ho cặ http://www.cssmatic.com/gradient-generator ho cặ http://css3gen.com/gradient-generator/ 5 Button Các m u button đ pẫ ẹ http://www.bestcssbuttongenerator.com/ ho cặ http://css-button-generator.com/ 6 Transform Generator http://css3gen.com/css-transform/ 7 Animation Hi u ng ho t hìnhệ ứ ạ cho web http://css3gen.com/css3-animation/ ho cặ http://cssanimate.com/ 8 Transition Hi u ng chuy nệ ứ ể http://css3gen.com/css-transition/#csstransition ho cặ http://css3generator.com/ 9 Column T o c t n i dungạ ộ ộ gi ng báoố http://css3gen.com/css3-multi-column- generator 10 Text effect D a trên text shadownự sinh ra các hi u ngệ ứ text đ pẹ http://css3gen.com/css3-text-effects/ 11 Flex box D ng nhanh layoutự theo flex box http://css3gen.com/css3-flexbox/ 12 Icon font http://fortawesome.github.io/Font-Awesome/ 4. HTML Entities - HTML Entity là mã hóa c a các ký t đ c bi t vi t trong HTML. Các ký t đ c bi t này đ củ ự ặ ệ ế ự ặ ệ ượ mã hóa đ tránh m t s l i hi n th và trùng l p v i các th đóng và th m c a HTML. Ví d :ể ộ ố ỗ ể ị ặ ớ ẻ ẻ ở ủ ụ < có mã là &lt; > có mã là &gt; Ký t tr ng là &nbsp;ự ắ Tham kh o thêm: http://www.w3schools.com/html/html_entities.aspả 5. URL Encoding - Url s d ng mã ASCIIử ụ - Mu n g i các ký t đ c bi t qua URL (ph ng th c GET) thì c n ph i mã hóa các ký t này,ố ử ự ặ ệ ươ ứ ầ ả ự đ mã hóa các ký t đ c bi t không n m trong b ng ký t ASCII ng i ta g i là URL encoding.ể ự ặ ệ ằ ả ự ườ ọ
  • 5. Tham kh o thêm: http://www.w3schools.com/tags/ref_urlencode.aspả