Jump to content
  • 0

Проблема с колонками


phatol
 Share

Question

В общем систуация такая. есть допустим 2 или 3 колонки, неважно.

Необходимо сделать так чтобы при растягивании окна браузера в ширину растягивались все 2 или 3.

но и при этом чтобы при сужении окна минимальная ширина каждой допустим была 400px. ну и соответственно между ними нужен отступ. float ставит рядом. я так понял нужно создать в середине пустой слой для отступа? даже если так у меня расширяется только правый а левый остается 400 =(

с параметрами min-width и float че то не получается. подскажите. нужно так как на картинке. + чтобы при растягивании растягивались только коричневые слоя. а отступ сохранялся. спасибо.

Untitled_1.jpg

Edited by phatol
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Две колонки</title>
<style type="text/css">
* {
padding: 0;
margin: 0;
}
body, html {
width:100%;
height:100%;
}
#mytable {
min-height: 400px;
}
#mytable td {
background: #8f7375;
min-width: 400px;
}
</style>
</head>
<body>
<table id="mytable" width="100%" cellspacing="30">
<tr><td></td><td></td></tr>
</table>
</body>
</html>

Если вам уперлась именно верстка дивами то надо думать... я бы подумал о width:50%;float:left;outline:30 solid white;padding:30px; однако это подумать все еще нужно...

Edited by stars
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy