CSS is a style sheet language used for describing the presentation semantics of a document written in a markup language.
<head> <link rel="stylesheet" htref="theme.css"> </head>
<p style='color: orange; font-size: 14px'> text </p>
<style type="text/css">
p {
color: orange;
font-size: 14px
}
</style>
Who is winner ?
.container {
width: 50px;
padding: 0 10px;
border: 1px solid #333;
margin: 0;
}
The floated elements will be taken out of the normal flow of the document.