gpt4 book ai didi

html - JSP 中标记
的位置无效

转载 作者:太空狗 更新时间:2023-10-29 14:09:38 25 4
gpt4 key购买 nike

我在我的 jsp 页面中插入了一些代码 HTML:acceuil.jsp ,但我的标签中出现错误 <div class="ca-content"> .它告诉我这是一个无效的位置。 (ca-content 指的是我样式表中的一个类)。

我试图禁用 HTML 验证器,但我仍然遇到同样的错误。

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath}/acceuil.css" />
<title>Insert title here</title>
</head>
<body>
<ul class="ca-menu">
<li>
<a href="#">
<span class="ca-icon">A</span>

<div class="ca-content">
<h2 class="ca-main">Exceptional Service</h2>
<h3 class="ca-sub">Personalized to your needs</h3>
</div>

</a>
</li>

</ul>
</body>
</html>

最佳答案

<div><a> 中无效.

HTML 4.1 specification<a>元素只能包含 inline elements<div>block element , 因此它可能不会出现在 <a> 中.

因此,改为:

<a href="#">
<span class="ca-icon">A</span>

<div class="ca-content">
<h2 class="ca-main">Exceptional Service</h2>
<h3 class="ca-sub">Personalized to your needs</h3>
</div>

</a>

使用:

<a href="#">
<span class="ca-icon">A</span>
</a>
<div class="ca-content">
<h2 class="ca-main">Exceptional Service</h2>
<h3 class="ca-sub">Personalized to your needs</h3>
</div>

或代表您需要的其他东西,但始终带有 <div>外面<a>

看看" The a element "在 HTML 5 规范中,可能会对您有所帮助。

关于html - JSP 中标记 <div> 的位置无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29954364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com