It's showing
. It's just being covered up. Take your code. Add body{height:1000px;} so scrollbars appear.
Code:
<!doctype html><html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>to_sitepoint</title>
<style type="text/css">
body{height:1000px;}
.text-box .textarea {
float: left;
width: 420px;
height: 130px;
margin-bottom: 15px;
padding: 10px;
border: 0;
font: 14px Arial,Helvetica,sans-serif;
background: url("http://ryanreese.us/images/price.png") no-repeat fixed;
}
</style>
</head>
<body>
<div class="text-box">
<p class="review">Your Review</p>
<div class="textarea">asdf<br>asdf</div>
</div>
</body>
</html>
Now start scrolling down. It's appearing. Just covered up. Just add in some coordinates.
Code:
<!doctype html><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>to_sitepoint</title>
<style type="text/css">
body{height:1000px;}
.text-box .textarea {
float: left;
width: 420px;
height: 130px;
margin-bottom: 15px;
padding: 10px;
border: 0;
font: 14px Arial,Helvetica,sans-serif;
background: url("http://ryanreese.us/images/price.png") no-repeat fixed 20px 50px;
}
</style>
</head>
<body>
<div class="text-box">
<p class="review">Your Review</p>
<div class="textarea">asdf<br>asdf</div>
</div>
</body>
</html>
There are a few solutions. That's one. I used an image from my website to show this issue. So it's not exactly your code
. Why do you need it to be fixed though?
Bookmarks