81 lines
1.1 KiB
HTML
81 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>My sample homepage</title>
|
|
</head>
|
|
<style>
|
|
body{
|
|
overflow-x:hidden;
|
|
}
|
|
|
|
/* contain
|
|
div.contain {
|
|
width: 100%;
|
|
height: 250px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
img.contain {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
*/
|
|
|
|
/* cover */
|
|
div.cover {
|
|
position: fixed;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
}
|
|
img.cover {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
min-width: 50%;
|
|
min-height: 50%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
blockquote {
|
|
background: #eee;
|
|
border-radius: 5px;
|
|
margin: 16px 0;
|
|
}
|
|
|
|
blockquote p {
|
|
padding: 15px;
|
|
}
|
|
|
|
cite {
|
|
margin: 16px 32px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<body>
|
|
<section>
|
|
<h1>Editor de textarea ~ Prueba de Concepto</h1>
|
|
|
|
<blockquote contenteditable="true">
|
|
<p>Edit this content to add your own quote</p>
|
|
</blockquote>
|
|
|
|
<cite contenteditable="true">-- Write your own name here</cite>
|
|
|
|
</section>
|
|
</body>
|
|
</html>
|
|
|
|
|