Advertisement
Guest User

Centrare div dentro div

a guest
Jan 16th, 2020
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.42 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <style>
  4.         #padre {
  5.             border:1px solid blue;
  6.             width:600px;
  7.             padding:20px;
  8.         }
  9.         #figlio {
  10.             border:1px solid red;
  11.             margin:0 auto;
  12.             width:400px;
  13.             max-height: 200px;
  14.             overflow:auto;
  15.         }
  16.     </style>
  17. </head>
  18. <body>
  19.     <div id="padre">
  20.         <div id="figlio">
  21.             <p>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?"
  22.             </p>
  23.         </div>
  24.     </div>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement