0
br tags
I want to adjust the text without br tags in a panel. how can I?
5 Answers
0
use pre tag
0
bhai rehman koi aor soln. bhi ha ya nahi
0
yes but you have two ways: 1) use a css3 property called word-wrap and assign the value to break-word; 2) or you can set the overflow to auto.
Example 1:
<style>
p{
word-wrap: break-word;
}
</style>
Example 2:
<style>
p{
overflow: auto;
}
</style>
0
thanx triminio I try it and let you know about the result
0
pre is like br. it as also been prohibited by my teachers.