Jump to content


Photo

Alinhar campos de formulário


  • Faça o login para participar
12 replies to this topic

#1 Henderson

Henderson

    12 Horas

  • Usuários
  • 279 posts
  • Sexo:Não informado
  • Localidade:Santos

Posted 05/02/2007, 07:18

seguitne...
eu tenho esse código

<p align="justify">
		  <form action="cadusuario2.php" method="post" name="cadusuario" id="form1">
			<label>Nome</label><code><input maxlength="60" type="text" id="nome" onKeyDown="ValidaSaida(this.id);" onKeyUp="Submit();ValidaSaida(this.id);" onfocus="fctexplicacao('Preencha com seu nome completo.');" onblur="fctexplicacao();"></code>
			<label>Email</label><code><input maxlength="50" type="text" id="email" onKeyDown="ValidaSaida(this.id);" onKeyUp="Submit();ValidaSaida(this.id);" onfocus="fctexplicacao('Preencha com um email válido.');" onblur="fctexplicacao();"></code>
			<label>Endereço</label><code><input maxlength="100" type="text" id="endereco" onKeyDown="ValidaSaida(this.id);" onKeyUp="Submit();ValidaSaida(this.id);" onfocus="fctexplicacao('Preencha com seu endereço completo.');" onblur="fctexplicacao();"></code>
			<label>Cidade</label><code><input maxlength="50" type="text" id="cidade" onKeyDown="ValidaSaida(this.id);" onKeyUp="Submit();ValidaSaida(this.id);" onfocus="fctexplicacao('Coloque o nome de sua cidade.');" onblur="fctexplicacao();"></code>
			<label>Telefone</label><code><input maxlength="13" type="text" id="telefone" onKeyDown="ValidaSaida(this.id);" onKeyUp="Submit();ValidaSaida(this.id);" onfocus="fctexplicacao('Coloque o seu telefone no formato <br>(xx)xxxx-xxxx, onde <b>(xx)</b> corresponde ao DDD de sua cidade que deve conter apenas dois digitos (ignore o zero a esquerda)');" onblur="fctexplicacao();"></code>
			<label>Login</label><code><input maxlength="20" type="text" id="login" onfocus="fctexplicacao('Escolha um nome de usuário que você utilizará para realizar seus pedidos.');" onKeyDown="ValidaSaida(this.id);" onKeyUp="fctexplicacao();envia('login','includes/recAJAX.php','POST',false);Submit();ValidaSaida(this.id);" onblur="fctexplicacao();"></code>
			<label>Senha</label><code><input maxlength="20" type="password" id="senha" onKeyDown="ValidaSaida(this.id);" onKeyUp="Submit();ValidaSaida(this.id);" onfocus="fctexplicacao('Escolha uma senha para ter acesso ao sistema de pedidos online.');" onblur="fctexplicacao();"></code>
			<br /><br />
			<label><input type="button" id="enviar" value="Cadastrar!" onclick="Valida();"></label>
		</form>
</p>

com esse css
/*********
 CAIXAS
*********/
code input {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	text-decoration: none;
	height: 15px;
	width: 145px;
	border: 1px solid #000000;
}
/*********
 BOTÕES
*********/
p{
	margin:10px 100px 20px 20px;
	line-height:150%;
}

label input {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	text-decoration: none;
	height: 20px;
	width: 80px;
	border: 1pt solid #000000;
	background:#FFFFFF;
}


o que eu quero é que no final, onde tá assim:
Attached File  1.JPG   34.31KB   58 downloads
fique assim...
Attached File  2.JPG   32.93KB   54 downloads

ta meio torta as img pq eu fiz no paint o qe eu quero, mas da´pra entender né?

então... dá´pra fazer isso ae? me ajudem por favor!

#2 Andreia Regina

Andreia Regina

    Veterano

  • Conselheiros
  • 1347 posts
  • Sexo:Feminino
  • Localidade:PR
  • Interesses:PHP; MySQL; Javascript; CSS; tudo ligado ao desenvolvimento web.

Posted 05/02/2007, 07:28

Use fieldset englobando as caixas de texto que vc deseja "destacar", para saber mais sobre acesse:

http://www.websemant...rms/#contacttop
http://www.maujor.co...al/formac-b.php

Fórum WMO - Conselheira - Na equipe desde 31/01/2006.
Links importantes: Regras de conduta - Busca do fórum


#3 Henderson

Henderson

    12 Horas

  • Usuários
  • 279 posts
  • Sexo:Não informado
  • Localidade:Santos

Posted 05/02/2007, 09:38

não, num é isso nãõ
eu fiz pra destacar só os campos qe eu quero alterar
não quero fazer aqela borda ali nãõ
o que eu quero é fazer com qe os campos qe tão um embaixo do otro, fiquem do lado!

#4 matt.cavotta

matt.cavotta

    Ativo

  • Usuários
  • 347 posts
  • Sexo:Masculino
  • Localidade:Campinas
  • Interesses:Desenvolvimento Web &amp; Programação

Posted 05/02/2007, 09:55

Hmmm, nesses casos eu costumo usar tabelas.

Não sei se você tá afim de usar, mas com tabela é só colocar os nomes numa linha e os inputs na linha de baixo.
WebFórum - Equipe de Desenvolvimento - Estagiario

I'm back!
Posted Image Edgy Eft 7.04

#5 Henderson

Henderson

    12 Horas

  • Usuários
  • 279 posts
  • Sexo:Não informado
  • Localidade:Santos

Posted 05/02/2007, 10:17

com tabela é fácil
mas eu to começando a fazer lay sem tabela agora
e pelo qe vejo, e acho qe é correto o qe dizem, tabela é pra listagens, pra mostrar dados e não pra montar layout
com tabela eu fazia isso rapidinho

mas eu quero montar ele sem usar tabela...
só qe eu sempre esbarro nesses posicionamentos, como agora!

#6 bobmatador

bobmatador

    12 Horas

  • Usuários
  • 210 posts
  • Sexo:Masculino
  • Localidade:Curitiba - PR

Posted 14/02/2007, 14:01

cara,
é bem simples.

só vc usar no input do lado esquerdo um
float: left
Sua fonte de Tutoriais na Web!
TutoriaisClube.com

#7 Andreia Regina

Andreia Regina

    Veterano

  • Conselheiros
  • 1347 posts
  • Sexo:Feminino
  • Localidade:PR
  • Interesses:PHP; MySQL; Javascript; CSS; tudo ligado ao desenvolvimento web.

Posted 15/02/2007, 08:17

Estude o código deste link: http://www.themaninb.../horizontal.htm

Fórum WMO - Conselheira - Na equipe desde 31/01/2006.
Links importantes: Regras de conduta - Busca do fórum


#8 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 21/09/2017, 22:46

Yogurt And Amoxicillin buy cialis Levitra Precio En Farmacia
Cialis 5 Mg Funciona Generic Viagra Generic Meltabs Viagra
Different Types Of Viagra <a href=http://cialtobuy.com>cialis buy online</a> Viagra 100 Mg Wirkungsdauer
Olanzapine online pharmacy Elocon Want To Buy Will Keflex Treat Syphilis Trusted Meds Online Amoxicillin Manufacture Acheter Cytotec Pharmacie generic cialis Viagra Blogs Best Online
Cephalexin Darvocet cialis Pediatric Amoxicillin Dose
Buy Cialis From Canada
Liste Pays Cialis Vente Libre <a href=http://cialtobuy.com>cialis buy online</a> Buy Propecia Without Prescription Male Pattern Hair Loss
Cipro Discount Card cialis online Kamagra Venta Libre
Cephalexin No Prescription Amoxicillin And Birth Control Pills accutane discount card
Ed Cures <a href=http://cialtobuy.com>cialis buy online</a> Cialis Levitra Viagra Vergleich

#9 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 28/09/2017, 21:54

Levitra 10 Mg Usato Expiration Keflex generic cialis Click1market Reviews
Viagra 100mg Sale Is Pennicillin A Form Of Amoxicillin cialis Secure Ordering Provera Cod Tablets Shop
Linkdomain Online Tadalis Sx Soft Order Brand Viagra Hawaii Commander Cialis Generique online pharmacy Pfizer Viagra Without Prescription Cephalexin Perscription Number
Amoxicillin For Dental Implants Cialis Tous Les Jours cialis Pictures Of Cephalexin

#10 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 08/10/2017, 23:33

Compra De Viagra On Line viagra Is Periactin Available In Canada
Purchase Levitra Professional Free Shipping Zentel Best Website Tablets Amex Accepted levitra online Cialis Pharmacie Maroc Cialis Quanto Costa Uses Of Amoxicillin Trihydrate Bp
Mail Order Cialis Canada viagra Buy Cialis Online With Prescription Ed Drug Shop

#11 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 25/10/2017, 05:31

Comprare Viagra Originale viagra Zithromax Children Dosage Amoxicillin What Are The Contraindication Macrobid Find
Zithromax For Uterine Infection Dog Antibiotics Amoxicillin buy viagra Ordering Glucophage Online Generic Dutasteride Low Price Without Rx
Amoxicillin Drug Interaction wheretobuylevitrapills Online Pharmacies For Viagra Propecia Pastilla Viasek

#12 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 25/10/2017, 17:59

Amoxicillin Infection Propecia Y Aminexil Buy Accutane From Canada generic cialis Levitra After Expiry Date
Il Cialis Migliora Cialis Price Europe 345 Cialis Kreuzschmerzen levitra 10 mg Best Buy Stendra No Prior Script El Paso Levaquin Bacterial Infections
How To Get Astelin Nasal Spray vardenafil 20 mg.no prescription Buy Tadalafil Citrate Liquid
Is Amoxicillin Available In A Patch Zithromax 250 Mg Price Generic Levitra 10mg viagra Ordini Cialis Spese Di Spedizione Viagra Pas Cher Paris Free Shipping Acticin Minnesota

#13 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 04/11/2017, 20:56

Different Types Of Viagra Propecia Dosage 5mg Allergic Itching Due To Amoxicillin viagra Kamagra Phone Order
Buy Cheap Priligy Uk Baclofene Lioresal Pc100 Tadalis Sx Soft viagra Netherlands Online Pharmacy Propecia Finasteride Msd
Propecia Finasteride Depression Acticin Quellada Hialeah Pharmacie Priligy viagra Buy Prevacid 15 Mg Solutab




0 user(s) are reading this topic

0 membro(s), 0 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq