css 如何绘制线从指针到左,上,右,底部在HTML中使用线的终点[关闭]

z5btuh9x  于 2023-10-21  发布在  其他
关注(0)|答案(1)|浏览(125)

已关闭,此问题需要更focused。它目前不接受回答。
**想改善这个问题吗?**更新问题,使其只关注editing this post的一个问题。

8天前关闭
Improve this question
我想画一个简单的线(hr)使用CSS和HTML。从左到右和从下到上绘制很简单。但是当我想从右指针到左指针和上指针到下指针画一条线时,我不能考虑CSS。
任何人都可以写CSS和HTML的线条画。比如:
1.左右
1.右左
1.顶底
1.自下而上

5vf7fwbs

5vf7fwbs1#

#toptobottom{
height:100px;
  width:0px;
border-left:solid black; 
}
#lefttoright{
margin-left:100px;
width:200px;
border-bottom:solid black;
}
<hr id="toptobottom">
  
  <hr id="lefttoright">

相关问题