I want to make design css like this
———————U—–|
I couldn’t draw exact design here. but the U shape width should be expanded to fit home about links. is it possible?
I want to make design css like this ———————U—–| I couldn’t draw exact design
Share
It’s hard to decipher exactly what you’re after just from that description. The text-mode demonstration doesn’t really explain it very well 🙂
This could maybe be achieved using CSS
border-radius, but if I’m interpreting your request correctly, it sounds like quite a complex layout.border-radiusonly does rounded corners — ie the four corners of a box. So if you need more complex layout than that, you’d need to have several boxes with rounded corners, positioned appropriately to get the desired effect.You may be able to achieve it with just rounded corners on the container box for the home/about links you mentioned. If this doesn’t achieve what you need then it sounds to me more like you need a graphic than a CSS border.
If the CSS
border-radiusdoes work for you, bear in mind that theborder-radiusfeature isn’t supported on IE. The good news is that there is a hack for IE called CSS3Pie which fixes that, so you can useborder-radiusin all browsers.Hope that works for you.