there Below is the html code:
<div class="cont">
<p class="fix">fixed text</p>
</div>
and css:
.cont{position:relative; width:500px; background-color:red; height:2000px;}
.fix{position:fixed; right:0;}
I want set the p.fix's right position relative to the .cont element. But the code I applied does not work correct.(it relatives to the body element)
Any suggestions? Thank you very much.