Home > Web Front-end > HTML Tutorial > html?样式_html/css_WEB-ITnose

html?样式_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:33:59
Original
1323 people have browsed it

<table><tr><td title=A>1</td><td title=B>2</td><td title=C>3</td></tr></table>
Copy after login


如何给弹出的框添加样式?


回复讨论(解决方案)

我不知道,这种能不能改样式。如果你希望能有样式的话,我建议你用js来重写吧,不要用系统自带的~
1 2 3可以用div来布局,弹出的A B C也用div布局,用js控制鼠标悬停事件,A B C显示或者是隐藏。

<!doctype html><html lang="en"><head>	<meta charset="UTF-8" />	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />	<title> 页面名称 </title><style type="text/css">td:hover {	position: relative;}td:hover:before {	content: attr(data-title);	position: absolute;	left: 5px;	top: 100%;	background: #330099;	color: #99FFFF;	border: 1px solid #00FF00;	border-radius: 5px;	box-shadow: 3px 3px 3px #666666;}</style></head><body><table><tr><td data-title="aaaa">1111</td><td data-title="bbbb">2222</td><td data-title="cccc">3333</td></tr></table></body></html>
Copy after login
Copy after login

我是来给2楼点赞的,思路给力。

<!doctype html><html lang="en"><head>	<meta charset="UTF-8" />	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />	<title> 页面名称 </title><style type="text/css">td:hover {	position: relative;}td:hover:before {	content: attr(data-title);	position: absolute;	left: 5px;	top: 100%;	background: #330099;	color: #99FFFF;	border: 1px solid #00FF00;	border-radius: 5px;	box-shadow: 3px 3px 3px #666666;}</style></head><body><table><tr><td data-title="aaaa">1111</td><td data-title="bbbb">2222</td><td data-title="cccc">3333</td></tr></table></body></html>
Copy after login
Copy after login



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template