Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

mestre fyoda

o meu codigo executa em todos os imputs

Recommended Posts

teria como executar apenas nos input type="text" a parte que esta em vermelho ?

<style>

body, p, div, td, input, select, textarea {

font-family: verdana,arial,helvetica;

font-size:10px;

color:#27364D;

text-decoration: none;

}

h1 {

font-family: verdana,arial,helvetica;

font-size:30px;

color:#27364D;

text-decoration: none;

}

 

input,textarea {

@if (is.ie) {

color: #efefef; background-color:#efefef; border: 1px solid #060606 ;

/*border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; */

}

} a {

text-decoration:none;

color: #27364d;

}

textarea { overflow:auto }

</style>

Compartilhar este post


Link para o post
Compartilhar em outros sites

no css, crie uma classe:

.classeCampoTexto {@if (is.ie) {color: #efefef; background-color:#efefef; border: 1px solid #060606;/*border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; */}}

no html, referencie essa classe:

Nome: <input type="text" id="nome" class="classeCampoTexto" />E-mail: <input type="text" id="email" class="classeCampoTexto" />.....

flws!

Compartilhar este post


Link para o post
Compartilhar em outros sites

Se voce está é com problemas com os botões, utilize a tag <button> ao invés da input-type-button.

 

AS vantagens de se usar button ao invés de input-button são inúmeras.

Além de ficar mais fácil de estilizar (voce não precisará ficar criando classes), a tag button também permite colocar html dentro dela.

 

Leia: http://forum.imasters.com.br/index.php?s=&...ndpost&p=519989

Veja sobre a tag button: http://www.w3schools.com/tags/tag_button.asp

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.