Click here to Skip to main content
15,886,518 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: how to access the 404 pages from remote website Pin
RedDk23-Sep-13 14:19
RedDk23-Sep-13 14:19 
AnswerRe: how to access the 404 pages from remote website Pin
Dave Kreskowiak23-Sep-13 14:26
mveDave Kreskowiak23-Sep-13 14:26 
QuestionHow to get language of site using php Pin
aeman23-Sep-13 5:47
aeman23-Sep-13 5:47 
AnswerRe: How to get language of site using php Pin
thatraja4-Oct-13 21:34
professionalthatraja4-Oct-13 21:34 
QuestionAdvice wanted: Domain name research. Pin
David C# Hobbyist.21-Sep-13 6:56
professionalDavid C# Hobbyist.21-Sep-13 6:56 
AnswerRe: Advice wanted: Domain name research. Pin
David Mujica23-Sep-13 2:58
David Mujica23-Sep-13 2:58 
QuestionBrowser incompatibility Pin
tiwal17-Sep-13 23:22
tiwal17-Sep-13 23:22 
AnswerRe: Browser incompatibility Pin
Richard Deeming18-Sep-13 1:42
mveRichard Deeming18-Sep-13 1:42 
There are two problems with your styles:
  1. By default, a <label> is an inline element, and width doesn't apply to inline elements;
  2. input:text is a jQuery selector, not a CSS selector;


Try:
CSS
label 
{
    width:240px;
    display: inline-block;
    background-color:aqua
}
input[type=text]
{
    width:70px
}


Example: http://jsfiddle.net/tJFUK/[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Browser incompatibility Pin
tiwal18-Sep-13 2:37
tiwal18-Sep-13 2:37 
GeneralRe: Browser incompatibility Pin
Richard Deeming18-Sep-13 2:56
mveRichard Deeming18-Sep-13 2:56 
GeneralRe: Browser incompatibility Pin
tiwal18-Sep-13 5:00
tiwal18-Sep-13 5:00 
QuestionExport data in html Pin
Otekpo Emmanuel16-Sep-13 14:21
Otekpo Emmanuel16-Sep-13 14:21 
SuggestionRe: Export data in html Pin
Richard MacCutchan16-Sep-13 21:07
mveRichard MacCutchan16-Sep-13 21:07 
QuestionOne time login app Pin
ashu200112-Sep-13 1:49
ashu200112-Sep-13 1:49 
AnswerRe: One time login app Pin
Ferdun2-Oct-13 21:30
Ferdun2-Oct-13 21:30 
GeneralRe: One time login app Pin
ashu20012-Oct-13 23:22
ashu20012-Oct-13 23:22 
GeneralRe: One time login app Pin
Ferdun3-Oct-13 2:16
Ferdun3-Oct-13 2:16 
QuestionWeb development Pin
anne_rose10-Sep-13 20:30
anne_rose10-Sep-13 20:30 
AnswerRe: Web development Pin
Richard MacCutchan10-Sep-13 21:39
mveRichard MacCutchan10-Sep-13 21:39 
GeneralRe: Web development Pin
anne_rose16-Sep-13 17:21
anne_rose16-Sep-13 17:21 
QuestionMultiple HttpPost method in MVC4 Pin
AghaKhan9-Sep-13 15:09
AghaKhan9-Sep-13 15:09 
QuestionWhat do you think? Pin
C.CoderCreator9-Sep-13 12:56
C.CoderCreator9-Sep-13 12:56 
AnswerRe: What do you think? Pin
AghaKhan9-Sep-13 16:05
AghaKhan9-Sep-13 16:05 
AnswerRe: What do you think? Pin
Richard MacCutchan9-Sep-13 21:30
mveRichard MacCutchan9-Sep-13 21:30 
QuestionDifferent criteria for Places API request Pin
Oleg Rover7-Sep-13 1:08
Oleg Rover7-Sep-13 1:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.