标签: html css
当我去锚(ID)时,我会在该部分周围找到边框。如何删除此边框?
this is the border
答案 0 :(得分:1)
你可以通过写
{ outline: none; }
在你的CSS中
答案 1 :(得分:0)
要删除边框,您可以在css中使用border: none;。
border: none;
答案 2 :(得分:0)
{ outline:none; }
这是基于浏览器的。 Chrome给了边框而不是Firefox,所以如果你使用的是Chrome,那么你必须在CSS文件中写下这段代码。