Sideway
output.to from Sideway
`-=[]โŸจโŸฉ\;',./~!@#$%^&*()_+{}|:"<>? ๐‘Ž๐‘๐‘๐‘‘๐‘’๐‘“๐‘”โ„Ž๐‘–๐‘—๐‘˜๐‘™๐‘š๐‘›๐‘œ๐‘๐‘ž๐‘Ÿ๐‘ ๐‘ก๐‘ข๐‘ฃ๐‘ค๐‘ฅ๐‘ฆ๐‘ง ร…โ€‰โˆ’โ€‚ร—โ€ƒโ‹…โˆ“ยฑโˆ˜๊žŠ๏นฆโˆ—โˆ™ โ„ฏ ๐”ธ๐”นโ„‚๐”ป๐”ผ๐”ฝ๐”พโ„๐•€๐•๐•‚๐•ƒ๐•„โ„•๐•†โ„™โ„šโ„๐•Š๐•‹๐•Œ๐•๐•Ž๐•๐•โ„ค๐ด๐ต๐ถ๐ท๐ธ๐น๐บ๐ป๐ผ๐ฝ๐พ๐ฟ๐‘€๐‘๐‘‚๐‘ƒ๐‘„๐‘…๐‘†๐‘‡๐‘ˆ๐‘‰๐‘Š๐‘‹๐‘Œ๐‘ โˆผโˆฝโˆพโ‰โ‰‚โ‰ƒโ‰„โ‰…โ‰†โ‰‡โ‰ˆโ‰‰โ‰Œโ‰โ‰ โ‰ก โ‰คโ‰ฅโ‰ฆโ‰งโ‰จโ‰ฉโ‰ชโ‰ซ โˆˆโˆ‰โˆŠโˆ‹โˆŒโˆ โŠ‚โŠƒโŠ„โŠ…โІโЇ ๐›ผ๐›ฝ๐›พ๐›ฟ๐œ€๐œ๐œ‚๐œƒ๐œ„๐œ…๐œ†๐œ‡๐œˆ๐œ‰๐œŠ๐œ‹๐œŒ๐œŽ๐œ๐œ๐œ‘๐œ’๐œ“๐œ” โˆ€โˆ‚โˆƒโˆ…โฆฐโˆ†โˆ‡โˆŽโˆžโˆโˆดโˆต โˆโˆโˆ‘โ‹€โ‹โ‹‚โ‹ƒ โˆงโˆจโˆฉโˆช โˆซโˆฌโˆญโˆฎโˆฏโˆฐโˆฑโˆฒโˆณ โˆฅโ‹ฎโ‹ฏโ‹ฐโ‹ฑ โ€– โ€ฒ โ€ณ โ€ด โ„ โ— สน สบ โ€ต โ€ถ โ€ท ๏น ๏น‚ ๏นƒ ๏น„ ๏ธน ๏ธบ ๏ธป ๏ธผ ๏ธ— ๏ธ˜ ๏ธฟ ๏น€ ๏ธฝ ๏ธพ ๏น‡ ๏นˆ ๏ธท ๏ธธ โœ   โ   โŽด  โŽต  โž   โŸ   โ    โก โ†โ†‘โ†’โ†“โ†คโ†ฆโ†ฅโ†งโ†”โ†•โ†–โ†—โ†˜โ†™โ–ฒโ–ผโ—€โ–ถโ†บโ†ปโŸฒโŸณ โ†ผโ†ฝโ†พโ†ฟโ‡€โ‡โ‡‚โ‡ƒโ‡„โ‡…โ‡†โ‡‡ โ‡โ‡‘โ‡’โ‡“โ‡”โ‡Œโ‡โ‡โ‡•โ‡–โ‡—โ‡˜โ‡™โ‡™โ‡ณโฅขโฅฃโฅคโฅฅโฅฆโฅงโฅจโฅฉโฅชโฅซโฅฌโฅญโฅฎโฅฏ
Draft for Information Only

Content

CSS Knowledge Baseref. CSS 2.1
โ€ƒNormalization of Style in HTML

CSS Knowledge Baseref. CSS 2.1

Normalization of Style in HTML

In order to make HTML elements rendered by user agent more consitstently with the author's specification, some properties of each element are needed to be normalized. Properties of each element can be specified accordingly.

  1. For examples, color and background of an element.
    /* last update 27Jul2016 */
    body 		{color: "Times New Roman";}		/* CSS 2.1 initial: depends on user agent */
    body 		{background-color: transparent;}   	/* CSS 2.1 initial: transparent  */
    body 		{background-image: none;}  		/* CSS 2.1 initial: none  */
    body 		{background-attachment: scroll;}   	/* CSS 2.1 initial: scroll */
    body 		{background-position: 0 0;} 	  	/* CSS 2.1 initial: 0% 0% */
    body 		{background-repeat: repeat;}		/* CSS 2.1 initial: repeat */
    
  2. For examples, Font and Text of an element.
    /* last update 27Jul2016 */
    html            {font-family: "Times New Roman";}	/* CSS 2.1 initial:depends on user agent */
    body            {font-size: 16px;}			/* CSS 2.1 initial: medium */
    h1              {font-size: 1.75em;}			/* CSS 2.1 HTML: 2em */
    h2              {font-size: 1.5em;}			/* CSS 2.1 HTML: 1.5em */
    h3              {font-size: 1.37em;}			/* CSS 2.1 HTML: 1.17em */
    h4              {font-size: 1.12em;}			/* CSS 2.1 HTML: 1em */
    h5              {font-size: 1em;}			/* CSS 2.1 HTML: 0.83em */
    h6              {font-size: 0.87em;}			/* CSS 2.1 HTML: 0.75em */
    h1,h3,h5        {font-style: italic;}			/* CSS 2.1 initial: normal */
    h2,h4,h6,p      {font-style: normal;}
    p               {font-variant: normal;}			/* CSS 2.1 initial: normal */
    h1,h2,h3,h4,h5,
    h6              {font-weight: bold;}			/* font-weight CSS 2.1 initial: normal */
    p               {font-weight: normal;}
    p               {text-align:justify;}			/* text-align CSS 2.1 initial: a nameless value that acts as 'left' if 'direction' is 'ltr', 'right' if 'direction' is 'rtl'  */
    h1,h2,h3        {text-decoration:underline;}            /* text-decoration CSS 2.1 CSS 2.1 initial: */
    h4,h5,h6        {text-decoration:none;}
    p		{line-height: 115%;}			/* CSS 2.1 initial: normal */
    p		{text-indent: 0;}                       /* CSS 2.1 initial: 0 */
    p		{text-transform: none;}                 /* CSS 2.1 initial: none */
    
    
  3. For examples, the box model.
    /* last update 27Jul2016 */
    div,p,img 	{height: auto;} 			/* CSS 2.1 initial: 0 0 */
    div 		{max-height: 300px;} 			/* CSS 2.1 initial: none */
    div 		{min-height: 0;} 			/* CSS 2.1 initial: 0 */
    div 		{max-width: none;} 			/* CSS 2.1 initial: none */
    div 		{min-height: 0;} 			/* CSS 2.1 initial: 0 */
    div 		{width: auto;} 				/* CSS 2.1 initial: auto */
    
    
  4. For examples, area outside the content area of a box model.
    /* last update 27Jul2016 */
    body,div,h1,h2,
    h3,h4,h5,h6,a,
    p,pre,ul,ol,img {border-color: black;}                  /* CSS 2.1 initial: depends on user agent */
    body,div,h1,h2,
    h3,h4,h5,h6,a,
    p,pre,ul,ol,img {border-style:solid;}                   /* CSS 2.1 initial: none */
    body,div,h1,h2,
    h3,h4,h5,h6,a,
    p,pre,ul,ol,img {border-width:0;}                       /* CSS 2.1 initial: 0 */
    body,div,h1,h2,
    h3,h4,h5,h6,a,
    p,pre,ul,ol     {margin: 0;}                            /* CSS 2.1 initial: 0 */
    img             {margin: 0 auto;}                       /* CSS 2.1 initial: 0 0 */
    body,div,h1,h2,
    h3,h4,h5,h6,a,p,
    h1,h2,h3        {margin-top: 0.6em;}                    /* CSS 2.1 initial: 0 */
    div,h4,h5,h6,a,
    p,pre,ul,ol     {margin-top: 0.5em;}                    /* CSS 2.1 initial: 0 */
    div,h1,h2,h3,
    h4,h5,h6,a,p,
    pre,ul,ol       {margin-bottom: 0.3em;}                 /* CSS 2.1 initial: 0 */
    pre             {outline: invert solid 1px;}            /* CSS 2.1 initial: invert none medium */
    body,div,h1,h2,
    h3,h4,h5,h6,a,
    p,ul,ol,img     {outline: silver solid 0;}
    body,div,h1,h2,
    h3,h4,h5,h6,a,
    p,ul,ol,img     {padding: 0;}                           /* CSS 2.1 initial: 0 */
    pre             {padding: 0;}
    
    
  5. For examples, layout of a box model.
    /* last update 27Jul2016 */
    body,div,pre,p	{clear: both;} 			/* CSS 2.1 initial: none */
    img 		{display: block;} 			/* CSS 2.1 initial: inline */
    body 		{float: left;} 			/* CSS 2.1 initial: none */
    div,pre 		{overflow: auto;} 			/* CSS 2.1 initial: visible */
    div,img 		{position: relative;} 		/* CSS 2.1 initial: static */
    body,div,pre,p	{visibility: visible;} 		/* CSS 2.1 initial: visible */
    p		{white-space: normal;}                  /* CSS 2.1 initial: normal */
    img		{white-space: nowrap;}
    img 		{z-index: 1;} 			/* CSS 2.1 initial: auto */
    
    
  6. For examples, generated elements.
    /* last update 27Jul2016 */
    ol,ul {list-style-image: none;} /* CSS 2.1 initial: none */
    ol,ul {list-style-position: outside;} /* CSS 2.1 initial: outside */
    ol,ul {list-style-type: none;} /* CSS 2.1 initial: disc */
    table {border-collapse: collapse;} /* CSS 2.1 initial: separate */
    table {border-spacing: 0;} /* CSS 2.1 initial: 0 */
    caption {caption-side: top;} /* CSS 2.1 initial: */
    table {empty-cells: show;} /* CSS 2.1 initial: show */
    table {table-layout: auto;} /* CSS 2.1 initial: auto */
    
    
  7. For examples, ......
    /* last update 27Jul2016 */
     {:;} /* CSS 2.1 initial: */
    
    

ยฉsideway

ID: 160700034 Last Updated: 7/27/2016 Revision: 0 Ref:

close

References

  1. http://www.w3.org/TR/1999/REC-html401-1999, 1999, HTML 4.01 Specification: W3C Recommendation, updated 24 December 1999
close

Latest Updated LinksValid XHTML 1.0 Transitional Valid CSS!Nu Html Checker Firefox53 Chromena IExplorerna
IMAGE

Home 5

Business

Management

HBR 3

Information

Recreation

Hobbies 9

Culture

Chinese 1097

English 339

Travel 38

Reference 79

Hardware 55

Computer

Hardware 259

Software

Application 213

Digitization 37

Latex 52

Manim 205

KB 1

Numeric 19

Programming

Web 290new

Unicode 504

HTML 66new

Common Color 1new

Html Entity (Unicode) 1new

Html 401 Special 1

CSS 65new

Selector 1

SVG 46

ASP.NET 270

OS 447new

MS Windows

Windows10 1new

.NET Framework 1

DeskTop 7

Python 72

Knowledge

Mathematics

Formulas 8

Set 1

Logic 1

Algebra 84

Number Theory 207new

Trigonometry 31

Geometry 34

Coordinate Geometry 2

Calculus 67

Complex Analysis 21

Engineering

Tables 8

Mechanical

Mechanics 1

Rigid Bodies

Statics 92

Dynamics 37

Fluid 5

Fluid Kinematics 5

Control

Process Control 1

Acoustics 19

FiniteElement 2

Natural Sciences

Matter 1

Electric 27

Biology 1

Geography 1


Copyright © 2000-2026 Sideway . All rights reserved Disclaimers last modified on 06 September 2019