Side navigation
#10043 closed bug (invalid)
Opened August 13, 2011 10:49AM UTC
Closed August 30, 2011 08:10AM UTC
Retrieving border doesn't work for left, right or bottom
Reported by: | sjltaylor@gmail.com | Owned by: | sjltaylor@gmail.com |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | css | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
var d = $('<div>');
d.css('border', 'solid 10px black')
d.css('borderTop')
> '10px solid black' [GREAT]
d.css('borderLeft')
> "" [NOT SO GREAT, same for right and bottom]
inconsistent with similar behaviour for padding
Attachments (0)
Change History (3)
Changed August 13, 2011 06:12PM UTC by comment:1
Changed August 15, 2011 11:26AM UTC by comment:2
component: | unfiled → css |
---|---|
owner: | → sjltaylor@gmail.com |
priority: | undecided → low |
status: | new → pending |
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket!
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/
Open the link and click to "Fork" (in the top menu) to get started.
Changed August 30, 2011 08:10AM UTC by comment:3
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
if you have to set more than one parameter is more convenient using a class...
for example:
.myborder{
border: 10px solid black;
}
var d = $('div');
d.addClass('myborder');
try this solution... ;)