vote up 0 vote down star

Hello, I am trying to make it so the container on this page http://s72956.gridserver.com/dev/toggle.html# will always stay at a certain width no matter how you resize the page is there any easy way of doing this.

flag

64% accept rate
Which container are you talking about? – Sinan Taifour Jul 20 at 17:34

1 Answer

vote up 1 vote down check

If you specify a width of a block element explicitly, it will stay at that width.

<div style="width:300px">
   ...
</div>

Will remain 300 pixels wide not matter what. You might however want to specify the width in css rather an inline like I did here.

link|flag
even with that it still moves. – newhen Jul 20 at 18:10
try moving your browser. – newhen Jul 20 at 18:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.