Jump to content
  • 0

как сделать 4 уголка у слоя


hitenok
 Share

Question

Подскажите, как можно сделать 4 скоса у прямоугольного текстового блока наиболее эффективным способом. (т.е. добавить картинки в каждый из углов). получается примерно следующее, только слишком громоздко:

 
<td style="vertical-align: top; padding-bottom: 30px; background: #f7eedc;">
<div style="background: #f9e8d4 url(/images/center_top_fon.jpg) repeat-x top; height: 36px;"><img src="/images/center_top_left.jpg" align="left" alt="" /><img src="/images/center_top_right.jpg" align="right" alt="" /></div>
<div style="background: #f9e8d4 url(/images/center_left_fon.jpg) repeat-y;">
<div style="background: transparent url(/images/center_right_fon.jpg) repeat-y right;">
<div style="padding: 40px 74px;">text</div>
</div>
</div>
<div style="background: #f9e8d4 url(/images/center_bottom_fon.jpg) repeat-x bottom; height: 36px;"><img src="/images/center_bottom_left.jpg" align="left" alt="" /><img src="/images/center_bottom_right.jpg" align="right" alt="" /></div>
</td>

Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0

для картинок помойму оптимальный вариант, можно еще самими слоями проделать подобное, но так не очень юзабельно, хотя количество запросов уменьшится.

данный вопрос обсуждался многократно, поюзай ка поиск по форуму.

Link to comment
Share on other sites

  • 0
т.е. фактически тоже самое только через position. А по элегантнее?

Куда элегантнее то?

<div id="type" class="clearfix">


<img src="/itech/corner1.gif" alt="#" id="corner1" />
<img src="/itech/corner2.gif" alt="#" id="corner2" />
<img src="/itech/corner3.gif" alt="#" id="corner3" />
<img src="/itech/corner4.gif" alt="#" id="corner4" />
</div>

Link to comment
Share on other sites

  • 0
Куда элегантнее то?

в таком случае, если картинки отключены, то некоторые браузеры покажут Г, поэтому, нужно юзать div и background, имхо.

В таком случае если картинки обключены, браузеры покажут рамку без закруглений. Где проблема то?

Юзая div и background видимо брузеры принудительно загрузят картинки?

Link to comment
Share on other sites

  • 0

Есть готовый яваскрипт вот тут http://www.html.it/articoli/nifty/index.html

Там на английском, но по примерам можно сориентироваться как применять, сложного нет ничего. Можно скриптом делать 1, 2, 3, 4 уголочка, задавать радиус скругления ) Есть ограничение: если у блока с фоном присутствует бордер другого цвета, такая конструкция не применяется ( (или не знаю как можно применить)

Link to comment
Share on other sites

  • 0

как вариант закругления кра?в блока... но можно переделать и под "скосы"

div.crcl {
display: block;
width: 110px;
margin: 10px auto;
background: #FFC29E;
color: #8B0000;
}

b.rtop, b.rbottom {
display:block;
background: #fff;
}

b.rtop b, b.rbottom b {
display:block;
height: 1px;
background: #FFC29E;
}
b.r1 {
margin: 0 5px;
}
b.r2 {
margin: 0 3px;
}
b.r3 {
margin: 0 2px;
}
b.rtop b.r4, b.rbottom b.r4 {
margin: 0 1px;
height: 2px;
}

<div class="crcl">
<b class="rtop"><b class="r1"></b><b class="r2"></b><b class="r3"></b><b class="r4"></b></b>


<b class="rbottom"><b class="r4"></b><b class="r3"></b><b class="r2"></b><b class="r1"></b></b>
</div>

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