This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Android fstab file. | |
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> | |
# The filesystem that contains the filesystem checker binary (typically /system) cannot | |
# specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK | |
/dev/block/platform/soc.0/f9824900.sdhci/by-name/system /system ext4 ro,barrier=1,inode_readahead_blks=8 wait,verify=/dev/block/platform/soc.0/f9824900.sdhci/by-name/metadata | |
/dev/block/platform/soc.0/f9824900.sdhci/by-name/vendor /vendor ext4 ro,barrier=1,inode_readahead_blks=8 wait,verify=/dev/block/platform/soc.0/f9824900.sdhci/by-name/metadata | |
/dev/block/platform/soc.0/f9824900.sdhci/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,data=ordered,nomblk_io_submit,noauto_da_alloc,errors=panic,inode_readahead_blks=8 wait,check,forcefdeorfbe=/dev/block/platform/soc.0/f9824900.sdhci/by-name/metadata | |
/d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Psuedo Class Selector (:valid and :invalid)</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Psuedo Class Selector (:required and :optional)</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Psuedo Class Selector (:focus)</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Psuedo Class Selector (:enabled and :disabled)</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Psuedo Class Selector (:checked)</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Descendant Selector</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Element Type Selector</title> | |
<style> | |
div { | |
padding: 20px; | |
margin: 20px; | |
background-color: #f5f5f5; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Class Selector</title> | |
<style> | |
.container { | |
padding: 20px; | |
margin: 20px; | |
background-color: #00bdc4; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Psuedo Class Selector (:active and :hover)</title> | |
<style> | |
h1 { | |
color: #00bdc4; | |
border-bottom: 1px solid #bdbdbd; | |
padding-bottom: 20px; |
NewerOlder