-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-style-attr.html
216 lines (202 loc) · 7.23 KB
/
html-style-attr.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML - Style Attribute 1</title>
<link rel="icon" href="https://raw.githubusercontent.com/coding-dragon/coding-dragon.github.io/master/img/logo.png" type="image/x-icon">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="jumbotron">
<h2 class="display-3">HTML Style Attribute</h2>
<p class="lead">
Styling of HTML is done with CSS language.
HTML <b>style</b> attribute to add styles to an element, such as color, font, size, and more.<br/>
In this topic we are going to learn inline styling of element.
</p>
<h3>Syntax : <br/><tagname style="property: value;" ></h3>
</div>
<div class="container p-3 bg-head">
<h3>Text color</h3>
<p class="lead">
The CSS <code>color</code> property defines the text color for an HTML element.<br/>
Values can be color name, color hex or rgba value.
</p>
<div class="code">
<pre>
<p <span>style="color: red;"</span> >Red colored text</p></pre>
</div>
</div>
<br/>
<div class="container">
<p style="color:red">Red colored text with <b>color: red;</b></p>
<p style="color:#3f51b5">Hex code colored text with <b>color: #3f51b5;</b></p>
</div>
<hr/>
<br/>
<br/>
<div class="container p-3 bg-head">
<h3>Background color</h3>
<p class="lead">
The CSS <code>background-color</code> property defines the background color for an HTML element<br/>
Values can be color name, color hex or rgba value.
</p>
<div class="code">
<pre>
<p <span>style="background-color:rgb(82, 212, 228);"</span> >rgba() code background colored text</p></pre>
</div>
</div>
<br/>
<div class="container">
<p style="background-color:yellow">Yellow background colored text with <b>background-color: yellow;</b></p>
<p style="background-color:rgb(82, 212, 228);">rgba() code background colored text with <b>background-color: rgb(82, 212, 228);</b></p>
</div>
<hr/>
<br/>
<br/>
<div class="container p-3 bg-head">
<h3>Text Size</h3>
<p class="lead">
The CSS <code>font-size</code> property defines the text size for an HTML element.<br/>
Values can be px, %, rem, em.
</p>
<div class="code">
<pre>
<p <span>style="font-size: 30px"</span> >Text with font-size:30px</p></pre>
</div>
</div>
<br/>
<div class="container">
<p style="font-size: 30px">Text with <b>font-size: 30px;</b></p>
<p style="font-size: 3rem">Text with <b>font-size: 3rem</b></p>
</div>
<hr/>
<br/>
<br/>
<div class="container p-3 bg-head">
<h3>Dimension: width & height</h3>
<p class="lead">
The CSS <code>width</code> and <code>height</code> property defines the width & height for an HTML element respectively<br/>
Values can be px, %, rem, em.
</p>
<div class="code">
<pre>
<p <span>style="width: 50%; height: 100px; background-color: #faebd7;" </span> >Text with font-size:30px</p></pre>
</div>
</div>
<br/>
<div class="container">
<div style="width: 50%; height: 100px; background-color: #faebd7;">
<p>Text line in div of 50% width & height: 100px</p>
</div>
</div>
<hr/>
<br/>
<br/>
<div class="container p-3 bg-head">
<h3>Text Alignment</h3>
<p class="lead">
The CSS <code>text-align</code> property defines the horizontal text alignment for an HTML element.
</p>
<div class="code">
<pre>
<p <span>style="font-size: 30px"</span> >Text with font-size:30px</p></pre>
</div>
</div>
<br/>
<div class="container">
<p style="text-align: center;">Center aligned text with <b>text-align: center;</b></p>
<p style="text-align: right;">Center aligned text with <b>text-align: right;</b></p>
<p style="text-align: left;">Center aligned text with <b>text-align: left;</b></p>
</div>
<hr/>
<br/>
<br/>
<div class="container p-3 bg-head">
<h3>Float</h3>
<p class="lead">
The CSS <code>float</code> property specifies how an element should float.
</p>
<div class="code">
<pre>
<p <span>style="float: right"</span> >Text with float: right</p></pre>
</div>
</div>
<br/>
<div class="container">
<p style="float: right" >Text with float: right</p>
</div>
<br/><br/>
<hr/>
<br/>
<div class="container p-3 bg-head">
<h3>Border</h3>
<p class="lead">
The CSS <code>border</code> property defines the border for an HTML element.<br/>
It has 3 css propery combined <code>border-width</code>, <code>border-style</code> usually is solid and <code>border-color</code>. border can be defined for 4 different sides separately<br/><br/>
<b>border: 2px solid #ff0000;</b>
</p>
<div class="code">
<pre>
<p <span>style="border: 2px solid #ff0000;"</span> >Text with border: 2px solid #ff0000;</p></pre>
</div>
</div>
<br/>
<div class="container">
<p style="border: 2px solid #ff0000;" >Text with border: 2px solid #ff0000;</p>
</div>
<hr/>
<br/>
<br/>
<div class="container p-3 bg-head">
<h3>Padding</h3>
<p class="lead">
The CSS <code>padding</code> property defines the space between its content<br/>
padding can be defined for 4 different sides separately
</p>
<div class="code">
<pre>
<p <span>style="padding: 10px; background-color: yellow"</span> >Text line with padding: 10px;</p></pre>
</div>
</div>
<br/>
<div class="container">
<p style="padding: 10px;background-color: yellow " >Text line with padding: 10px;</p>
<p style="background-color: yellow " >Text line without padding</p>
</div>
<hr/>
<br/>
<br/>
<div class="container p-3 bg-head">
<h3>Margin</h3>
<p class="lead">
The CSS <code>margin</code> property defines the space between adjacent element<br/>
margin can be defined for 4 different sides separately
</p>
<div class="code">
<pre>
<div style="padding: 10px; background-color: #faebd7;>
<p>Div 1</p>
</div>
<div style="<span>margin: 10px;</span> padding: 10px; background-color: #faebd7;>
<p>Div 2</p>
</div>
</pre>
</div>
</div>
<br/>
<div class="container">
<div style="padding: 10px; background-color: #faebd7;">
<p>Div 1</p>
</div>
<div style="margin: 10px; padding: 10px; background-color: yellow;">
<p>Div 2</p>
</div>
</div>
<hr/>
<br/>
<br/>
</body>
</html>