TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask YC: What was the hardest thing to learn in HTML and CSS?

8 点作者 german大约 17 年前
I'm trying to put together a HTML &#38; CSS tutorial, I'll use this information to put more emphasis in the most difficult parts. Note: learning how to position elements sing tables does not count ;)<p>Thanks.

9 条评论

rlm大约 17 年前
How to make it look the same in IE (6, 7 and now 8), FF (2 and 3), Opera and Safari...
评论 #132076 未加载
bouncingsoul大约 17 年前
* The box model. Specifically how padding doesn't behave like most people expect. Be sure to include or point to a good illustration.<p>* The difference between inline and block display of elements – and how you can change them with css.
boucher大约 17 年前
I've seen a lot of people fail to grasp the specifics of float.
enomar大约 17 年前
Simulating table based layouts without tables (before there were frameworks for it).
m0nty大约 17 年前
Why not start off with how to use Blueprint CSS (<a href="http://code.google.com/p/blueprintcss/" rel="nofollow">http://code.google.com/p/blueprintcss/</a>) and then show how to extend it? Blueprint gets the basics very right indeed, and allows your readers to become productive quickly. Then you can move on to how to create your own page elements, how to modify Blueprint, etc.<p>WRT your question, when I was building my own tiny websites I couldn't understand how CSS would help me be productive. The larger the sites, of course, the more obvious that became.
exiquio大约 17 年前
I believe the hardest thing about learning XHTML and CSS besides having to make things work across various browsers is avoiding the HTML soup, dated HTML practices such as the use of tables, and CSS hacks. I think it would be best to learn according to the current W3C standards which would enable one to have a stable foundation when swimming through content.
jgrahamc大约 17 年前
Page layout using DIVs... of course, you could always use TABLEs :-)
edw519大约 17 年前
The differences in the DOM of IE and Mozilla.
drewp大约 17 年前
position: absolute vs relative<p>I've had to look up the rules several times now for how the parent box is chosen. I still don't know if I'm making more intermediate divs than I have to.