作者elderbear (暧昧不好不要暧昧)
看板Web_Design
标题[问题] 块状超连结语言写法
时间Mon Sep 26 17:28:55 2022
我以往维护网页都是土法炼钢把前人拿来修改
现在想要在超连结上呈现块状连结的效果
然後google到
http://www.study-area.org/coobila/tutorial_535.html#
其中包含了块状连结的案例
但因为我原本都没有使用css,都用很简单的语法来呈现内容而已
(就是< a href="超连结网址" >超连结名称< /a > 这种程度而已)
想问有没有不用使用css就能呈现块状连结的写法呢?
<tr style="height: 16.8pt;">
<td class="xl69" style="height: 16px; border-right: 1pt solid white;
border-top-color: white; width: 15%; border-bottom: 1pt solid white;
border-left-color: #f0f0f0; background-color: #d5f3fd;" width="138"
height="22"><span style="font-family: 'times new roman', times, serif;
font-size: 10pt;">时间</span></td>
<td class="xl70" style="border-right: 1pt solid white; border-top-color:
white; width: 66.8171%; border-bottom: 1pt solid white; border-left-color:
white; background-color: #d5f3fd; height: 16px;" width="401"><span
style="font-family: 'times new roman', times, serif; font-size:
10pt;">>影片</span></td>
<td class="xl70" style="border-right: 1pt solid white; border-top-color:
white; width: 18.1829%; border-bottom: 1pt solid white; border-left-color:
white; background-color: #d5f3fd; height: 16px;" width="112"><span
style="font-family: 'times new roman', times, serif; font-size:
10pt;">人名</span></td>
</tr>
基本上就是写好三行的表格
然後想把超连结镶嵌在影片这格的整个储存格
想知道有没有继续这种写法就能做出来的办法
感谢~
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 211.76.175.169 (台湾)
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Web_Design/M.1664184537.A.53E.html
1F:推 cqwt: style里面就是css 09/26 17:55
2F:推 harry9522016: a标签display改为block,并设定宽高皆为100%,应该 09/27 14:42
3F:→ harry9522016: 就可以做到 09/27 14:43
4F:→ harry9522016: <a href="#" style="display:block; width:100%; 09/27 14:44
5F:→ harry9522016: height: 100%;"><span>影片</span></a> 09/27 14:45
6F:推 art1: 听起来是在问网页连结不用 CSS,要怎麽自订出想要的外观 09/28 17:15
7F:→ art1: 虽然能做到的原理也是靠 CSS,但 bootstrap 只需要知道class 09/28 17:17
8F:→ art1: 对应哪种效果就能用了 09/28 17:17
9F:→ art1: booststrap 有个 .btn-block 可能能达成你想要的效果 09/28 17:19