Pessoal estou apanhando um bocado aqui tentando alinhar esses dois rich:panel de acordo com meu arquivo CSS:
(Não coloquei direto no post porque a imagem é grande)
http://img37.imageshack.us/img37/72/seleo006.png
Esse é o meu JSP
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<%@ taglib prefix="a4j" uri="http://richfaces.org/a4j"%>
<%@ taglib prefix="rich" uri="http://richfaces.org/rich"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel=stylesheet href="css/estilo.css" type="text/css" />
<title>Cadastrar pagamentos</title>
</head>
<body>
<f:view>
<%@include file="cabecalho.jsp"%>
<a4j:loadScript src="scripts/jquery.maskMoney.js"></a4j:loadScript>
<h:panelGrid columns="3" styleClass="richPanelGrande">
<rich:panel styleClass="richPanel">
<f:facet name="header">
<h:outputText value="Cadastro de Pagamentos" />
</f:facet>
<%@include file="part/cadastrarPagamento.jsp"%>
</rich:panel>
<rich:panel styleClass="richPanelCentro">
<%@include file="part/graficoInicio.jsp"%>
<%@include file="part/tabelaPagamentos.jsp" %>
</rich:panel>
<rich:panel styleClass="richPanel">
<f:facet name="header">
<h:outputText value="Filtro para pagamentos" />
</f:facet>
<%@include file="part/filtro.jsp"%>
</rich:panel>
</h:panelGrid>
</f:view>
</body>
</html>
E aqui é o meu CSS:
@CHARSET "UTF-8";
.richPanel {
height: 590;
width: 357;
}
.richPanelCentro {
height: 100%;
width: 600;
}
.richPanelGrande{
top: 0%;
vertical-align: top;
}
.outputTextPadrao{
font-size: 8pt;
}
valeu :!: igualmente :!: