Then we put the css into ourstylesheet that will position our textbox. We use the position: fixed; tag to place the textbox on the page at a specific location regardless of scrolling. We set the visibility to hidden so that the box is hidden until the user clicks a link in the page to open it.
.struct {
background: #9f9;
color: #000;
position: fixed;
left: 100px;
top: 100px;
visibility: hidden;
margin: 5px;
padding: 10px;
border: 2px solid #036;
}
.struct a {
color: #000;
}
Next we define the div that will hold the textbox and give it an id.
this is the text of the textbox
This is the close button
Finally we insert an appropriate <a> tag to display the box.
test