请参阅 CSS 和 Visual Studio c# 中使用的其他简单样式方法的链接

发布于 2024-09-30 09:04:30 字数 172 浏览 0 评论 0原文

是的,可以搜索谷歌,但根据您的经验,有数千个结果,

这些链接对于必须在一个月内使用它制作一些网站的初学者来说是最好的。

  • 我的意思是样式,

  • 设置页脚样式的方法(您知道版权信息)

使用 vs08 c# aspx

yes can search google but there are thousand of results

by your experience which links give the best for a beginner who has to make some website using it within a month.

  • i mean the styling,

  • the ways to style the footer (you knw the copyright message)

using vs08 c# aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

饮湿 2024-10-07 09:04:30

首先,当你开始使用 CSS 时,你就会明白浏览器兼容性是要点。你不能只参考 CSS2 或 CSS3 约定。
查看quirkmode

那么HTML Dog来了。

W3Schools 适合初学者,但您很快就会需要更多专业和详细的参考资料。此时,这将取决于您的需求。

那么你必须了解一些 CSS 技巧和技巧。黑客:https://stackoverflow.com/questions/500827/ css-tips-which-every-beginning-developer-should-know-about
Firebug 确实是我们的救世主。

@媒体屏幕
{
div p.goodLuck:之前
{
内容:“祝你好运!” // 不适用于 IE (owwww noz,第一次兼容性失败:D)
}
}

First of all, when you are beginning to use CSS you understand that browser compatibility is the main point. You can't only referer to CSS2 or CSS3 convention.
Take a look at quirkmode.

Then here come HTML Dog.

W3Schools is good for beginners but you'll quickly need more pro and detailed references. And at this point, it will depend on your needs.

Then you have to know some CSS tricks & hacks : https://stackoverflow.com/questions/500827/css-tips-which-every-beginning-developer-should-know-about.
Firebug is really our savior.

@media screen
{
div p.goodLuck:before
{
content: "Good luck !" // Don't work on IE (owwww noz, first compatiblity fail :D)
}
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文