I tried to write a skin with <div> and <span> only. And only using CSS to do the webpage's layout.
But I found the content will over my content pane's region and will not change colume automatically?
ex: I use
<div class = contentpane id = contentpane runat = server /> as content pane.
and
.contentpane
{
background-color: Transparent;
width: 320px;
height: 506px;
margin: 83px 0px 0px 334px;
padding: 1px;
vertical-align: top;
text-align: left;
}
as it's style.
But the text I inputed like
"QAZWSXEDCRFVTGBYHNUJMIKOLQAZWSXEDCRFVTGBYHNUJMIKOLqazwsxedcrfvtgbyhnujmikolp"
This is obviously over 320 px. But in the content pane it just display as what I type and doesn't change colume automatically. I expect it will become something look like:
"QAZWSXEDCRFVTGBYHNUJMIKOLQAZWSXEDCRFVTGBYHNUJMIKOL
qazwsxedcrfvtgbyhnujmikolp"
Does anybody know what I am missing would cause this happened?