Heim >Web-Frontend >HTML-Tutorial >怎么把<input type="text"/>拖到中间??_html/css_WEB-ITnose

怎么把<input type="text"/>拖到中间??_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:21:37928Durchsuche

初学dreamweaver,我想把左上角的那个,拉到图片的中间那里,该怎么弄??
直接拉的话,拉不了。。
或者说,代码应该怎么改???


login.css:

/* CSS Document */body{	position:absolute;	left:318px;	top:426px;	width:582px;	height:364px;	background-image:url(../images/log.gif);	background-position: center;	background-repeat: no-repeat;	background-attachment: fixed;}


login.html:
<!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=gb2312" /><title>login</title><link type="text/css" rel="stylesheet" href="css/login.css" /></head><body><html>	<div>		user:<input name="text" type="text" />	</div></html></body></html>


回复讨论(解决方案)

怎么用dreamweaver拉它,控制它,或者代码该怎么改??

你为啥body里面写个absolute,应该div上写啊...你加浮动流也OK...不知道你背景图多大!

添加一个class属性:
方法一:.userName{position:absolute;left:300px;top:250px;}
方法二:.userName{float:left;margin-left:300px;margin-top:250px;}

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn