14/01/2007, 09:03
|
| | Fecha de Ingreso: enero-2007
Mensajes: 156
Antigüedad: 18 años Puntos: 1 | |
Re: Problema con las posiciones El archivo jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html>
<head>
<link title="menuCSS" type="text/css" rel="stylesheet" href="menuCSS.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title><bean:message key="empresa.titulo" /></title>
</head>
<body>
<bean:message key="empresa.nombre" />
<div id="boton">
<html:link action="/Personal" styleClass="enlaceboton"/>
</div>
</body>
</html:html>
Y ahora el CSS:
@CHARSET "ISO-8859-1";
html{
margin: 0 auto 0 auto;
width: 760px;
height: 100%;
}
body {
margin: 0 auto 0 auto;
text-align: justify;
font-family: freesans, sans, sans-serif;
background-color: #FFF;
background-repeat: repeat-y;
background-position: center;
}
#boton{
margin-top: 10%;
text-align: center;
}
.enlaceboton:link, .enlaceboton:visited {
display: block;
width: 200px;
height: 49px;
background-image: url(IMAGES/gesPersonal.png);
}
.enlaceboton:hover, .enlaceboton:active{
background-image: url(IMAGES/gesPersonal2.png);
}
LO que quiero hacer es centrar el link horizontalmente |