javascript - How do I add some text in front of a textarea -


i have text-area , want put div or floating text in front of , when click text want open link in new window. searched on google, couldn't find way using html/css.

here css code textarea:

textarea {       width:400px;     height:400px;     display:block;     position:absolute;     top:50%;     left:50%;     margin-left:-200px;      margin-top:-200px;      border-width:5px;     border-color:green;     background-image: url("../pictures/background.jpg"); } 

try using code.

<a href="link" id="idname"></a> 

also, i'd practice using lower cases in directories. i.e "pictures" not "pictures". easier remember.


Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -