摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>组合选择器</title> <style type="text/css"> i,b,em{ color: red; } </style> </head> <body> <i>深圳市 阅读全文
posted @ 2020-10-24 08:31
多测师_肖sir
阅读(131)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>标签选择器</title> <style type="text/css"> em{ color: red; } </style> </head> <body> <em>深圳市多测师 阅读全文
posted @ 2020-10-24 08:30
多测师_肖sir
阅读(82)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>class选择器</title> <style type="text/css"> .bao{ color: blue; } </style> </head> <body> <p c 阅读全文
posted @ 2020-10-24 08:25
多测师_肖sir
阅读(67)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>id选择器</title> <style type="text/css"> #dcs{ color: red; } </style> </head> <body> <p id="d 阅读全文
posted @ 2020-10-24 08:24
多测师_肖sir
阅读(65)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>层叠样式表</title> <!--2.第二种方法:在head中添加style属性--> <style type="text/css"> p{ color: red; } </st 阅读全文
posted @ 2020-10-24 08:22
多测师_肖sir
阅读(108)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>表单标签</title> </head> <body> <!--通过post接口请求方法向http://www.baidu.com地址进行表单提交--> <form action= 阅读全文
posted @ 2020-10-24 08:11
多测师_肖sir
阅读(135)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>表格跨行操作</title> </head> <body> <table align="center" border="2" cellspacing="5" cellpadding 阅读全文
posted @ 2020-10-24 08:06
多测师_肖sir
阅读(108)
评论(0)
推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-10-24 08:03
多测师_肖sir
阅读(0)
评论(0)
推荐(0)
摘要:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>表格标签</title> </head> <body> <table align="center" border="20" bgcolor="#FF0000" cellspacin 阅读全文
posted @ 2020-10-24 07:58
多测师_肖sir
阅读(78)
评论(0)
推荐(0)