<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> <%@ taglib uri="/WEB-INF/c.tld" prefix="c"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <style> body{ background: transparent url(../public/common/image/winbg.jpg) repeat-x scroll 0 0; font-size:13px; font-weight:bold; color:#29518c; line-height:30px; } .bluesky label{ display:inline-block ; padding-left:20px; padding-right:40px; padding-bottom:10px; text-align:right; width:200px; background-color: red; } .bluesky span{ display:inline-block ; padding-left:20px; padding-right:40px; padding-bottom:10px; text-align:left; } .bluesky>div{ border-bottom: 1px dashed #99CCFF; } </style> </head> <body> <div class="bluesky"> <div> <label>所属分类:</label> <span>${course.TCourseClassification.classificationName }</span> </div> <div> <label>课程名称:</label> <span>${course.courseName }</span> </div> <div> <label>课程种类:</label> <span> <c:if test="${course.courseType==1 }">课程</c:if> <c:if test="${course.courseType==2 }">培训课程</c:if> </span> </div> <div> <label>学时(分):</label> <span>${course.courseTime }</span> </div> <div> <label>课程简介:</label> <span>${course.description }222</span> </div> <div> <label></label> <span>${course.description }ss</span> </div> </div> </body> </html>
详细解决方案
格局(未完成)
热度:406 发布时间:2012-10-20 14:12:48.0
相关解决方案