|
I would like to use CSS to create nice round border. I'm aware of the following CSS Style:
border-radius -webkit-border-radius -moz-border-radius
Which style(s) are the best to use?
Started by nobosh on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
-moz-border-radius is for Mozilla....
-webkit-border-radius is for webkit based browsers such as Safari & Chrome.
The plain border-radius but best practices say you should include it so when CSS3 goes live you already have it implemented.
|
|
I have a table with the following CSS rules applied:
table { border-collapse: collapse; } td { border: 2px solid Gray; }
I want certain cells to have a red border, instead.
td.special { border: 2px solid Red; }
This doesn't work as I'd expect. In FireFox...
Started by Brant Bobby on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll have to find some that work?
....
Wouldborder-collapse means the td's don't actually have some of their borders.
Then setting a border would give an internal border, I believe.
Margins gives a nice border.
|
|
Hey everyone,
I'd like to make a nice looking border for the bottom (blue) section on this page: http://omkara.x-gr.net/
My idea is to make it similar to the one you see on this page: http://mailchimp.com/
Do you see where the blue BG ends and the grey...
Started by msKashmoney on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at sitepoint):
I'm-style: solid; border....
My best guess would be potentially something like this;
Code: *bluebg div* { border-bottom-color: # ; border-width: 1px; }
Again, you would need to play around possibly with the colours.
Sheets.
|
Ask your Facebook Friends
|
Edit - Original Title: Is there an alternative way to achieve border-collapse:collapse in CSS (in order to have a collapsed, rounded corner table)?
Since it turns out that simply getting the table's borders to collapse does not solve the root problem,...
Started by vamin on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
To the best of my knowledge, the only way you could do it would be to modify all the cells like so:
table td { border-right-width:0px; border-bottom-width:0px; }
And then to get the border on the bottom and right back
table....
|
|
<input type="text" name="user" class="middle" id="user" tabindex="1" />
Basic text input in html, when you tab or focus into it, Safari will put a blurry blue border around it. For the layout I am working on, this is distracting and does not look...
Answer Snippets (Read the full thread at stackoverflow):
A quick test would be to do:
<input type="text" name="user" class="middle" id="user" tabindex="1" style="border: none" />.
Unfortunately I don't have Safari, but you could try through CSS .
|
|
I am using Amazon S3 and certain images are hosted there. Its kind of a pain to check each image in turn to verify its coming from the CDN and sometimes new images are added and someone forgets to upload them, and I thought it would be nice to have a ...
Started by Simon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
How about:
$("img[src^=http://images.example.com]").css("border.
For 'starts with' instead of 'contains'.
|
|
I am working on a form in C# that is used for displaying information, but I still need to allow some manipulation of the information. What I really want to do is remove the border from a combobox, this would allow me to display the information while also...
Started by Tester101 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
Update: You can try "hiding" the border by setting property to "System", Font name....
Make you can do.
Why would you need the ComboBox to be borderless? Doesn't make much sense to me.
|
|
I am in the process of dicing and slicing a psd layout from a designer. The design is based on the 960 grid system and consists of multiple boxes (a 960px box for the top menu, 2 460px boxes for the 2 content areas, a 220pixel and a 720 pixel for another...
Started by cJockey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The best route to take here would be using pureI am contemplating on what would be the best route to take here, html wise, while keeping in mind giving users of older browsers....
That it should ofcourse validate, nice semantics etc.
|
|
Hi, Is there a way to adjust the marges of a border around a math region. When I select show border in the property dialogue box, the border are so close to the content of the region that it touch it. It would also be nice to be able to put a border around...
Started by bedasy-disabled on
, 22 posts
by 9 people.
Answer Snippets (Read the full thread at ptc):
Richard Sometimes....
I know > just to check for oddities.
: : >It would also be nice to be >able to put a border around >more then one region.
|
|
We are developing a skinned app with various rounded edges on most of its windows. I am using window regions to define non-rectangular shapes, but nearly everyone objects to the jagged aliasing this causes, because pixels can only be either fully opaque...
Started by Doug Kavendek on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't have any actual numbers, but just from a quick test of trying... .
I've found out one thing: having separate frame pieces can render significantly faster than having one single giant frame window, with a large expanse of empty pixels in the middle .
|