如何在html中创建边框?
嗨,现在我用 html 创建一个网站,但我有一个疑问如何创建边框? 例如:
welcome to neevee
1. kkkkk
2. kliil
3. oomem
4. koemu
如何创建此示例内容框或边框框和边框相同或不同......帮助我......
hi now i create one website in html but i have one doubt how to create border?
eg:
welcome to neevee
1. kkkkk
2. kliil
3. oomem
4. koemu
how to create this example content box or border box and border are same or different...help me....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要向任何类型的页面元素添加边框,您可以使用 CSS。
在
.css
文件中,您可以这么说:这表示创建一个 1 像素宽的实线(而不是虚线或点线等)黑色边框。
您可以在此处查看更多信息。
您应该访问其他答案中的链接,以便您还可以了解有关 HTML 和 CSS 的更多信息。
编辑:我忘了提及,您还可以使用更多 CSS 或 JavaScript 进一步设置边框及其相应内容的样式。您可以使边框变得模糊、添加阴影或使其变圆。这些函数大部分来自 CSS3,您可以在此处查看其中的一些函数。
祝你好运!
To add a border to any kind of page element, you can use CSS.
In a
.css
file, you would say this:This says to create a border that is 1 pixel wide, solid (rather than dashed or dotted, etc.), and black.
You can see more here.
You should visit the links in the other answers so you can learn a bit more about HTML and CSS, as well.
EDIT: I forgot to mention that you can also further style the border and its corresponding content using more CSS or JavaScript. You can make a border fuzzy, give it a drop shadow, or make it rounded. Most of these functions are from CSS3, and you can check some of that out here.
Good luck!
使用 CSS 根据您的喜好设置页面样式,请参阅 边框 属性。
Use CSS to style your pages to your liking, see the border property.
这是在 html 元素上创建边框的快速教程。 http://www.w3schools.com/css/css_border.asp
Here's a quick tutorial to create border on your html element. http://www.w3schools.com/css/css_border.asp