Jump to content

Jerry62704

Members
  • Posts

    321
  • Joined

  • Last visited

About Jerry62704

  • Birthday 01/04/1948

Profile Information

  • Location
    Springfield, IL

Jerry62704's Achievements

Member

Member (2/7)

0

Reputation

  1. What is <p> going to be centered in? More importantly, how do you define "center"?Let's assume that you want it to look like this (periods are to be seen as spaces):|...First name: [input box].........||....Last name: [input box].........||...........Write something...........||....[....................................]....||....[....................................]....|(assuming the bars line up) - is that it?If so, then you want the First name and Last name in a div (because you want a specific placement) so it might look like (off the cuff):<div class="inputText">First Name: <input...></div><div class="inputText">Last Name: <input...></div><div class="centerText">Write something</div>where.inputText {width:xxx; margin: 0 auto;}.centerText {width:30%; margin:0 auto;}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Home</title><style type="text/css">* { border: 0; margin: 0; padding: 0; }.textCenter { width: 50%; margin: 0 auto; }.inputText { width: 70%; margin: 0 auto; }div { width:100%; }</style></head><body><div> <form action="post"> <div class="inputText"> First Name: <input type="text"></input> </div> <div class="inputText"> Last Name: <input type="text"></input> </div> <div class="textCenter"> Write stuff </div> <div class="textCenter"> <textarea rows="4" cols="4"></textarea> </div> </form><div></body></html>
  2. Jerry62704

    Signatures

    Oh, I thought they were talking about Charles Cabbage and his famous son, Brussel, called Sprout. His cousin on his wife's side was Cole Slaw. Cole married an Irish lass and had a son George Bernard Slaw.
×
×
  • Create New...