0335342e00
First Draft of the Example Files
27 lines
683 B
HTML
27 lines
683 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Padding</title>
|
|
<style>
|
|
#object1 {
|
|
border-style:solid;
|
|
border-width:1px;
|
|
background :orange;
|
|
color :darkred;
|
|
font-family :Arial;
|
|
font-size :12px;
|
|
text-align :justify;
|
|
display :table-cell;
|
|
width :148px;
|
|
padding :10px 20px 30px 40px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id='object1'>To be, or not to be that is the question:
|
|
Whether 'tis Nobler in the mind to suffer
|
|
The Slings and Arrows of outrageous Fortune,
|
|
Or to take Arms against a Sea of troubles,
|
|
And by opposing end them.</div>
|
|
</body>
|
|
</html>
|