For the Internet Explorer you'll actually need to wrap the entire #textbox_group with another <div> and apply text-align: center; on that <div>, i.e.,
<div id="textbox_container">
<div id="textbox_group">
...
</div>
</div>
...
#textbox_container{
text-align: center;
}
#textbox_group {
text-align: left;
}
Main Topics
Browse All Topics





by: KennyTMPosted on 2006-06-09 at 03:04:31ID: 16868852
#textbox_group {
margin: auto; /* works in Fx and should also all standard-compliance browsers */
}
/* use Conditional Comments to nest the following to make it work in IE only */
<!--[if IE]>
<style>
...
#textbox_group {
text-align: center;
}
#textbox_group div {
text-align: left;
}
...
</style>
<![endif]-->