Which of course does not freaking work, so we try
.copy img[align=”left”], .copy p img:last-child, .copy img {margin-right: 10px; margin-bottom: 0px;}
[success]
In which I try to fix Tumblr’s freaking auto-margining of images
Adding this CSS: .copy img {margin-right: 10px; margin-bottom: 0px;}
New theme I’m playing with, which I highly recommend (clean and easily customizable): http://effectortheme.tumblr.com/.
I edit my theme’s layout by identifying CSS selectors using the Firefox Firebug app: http://getfirebug.com/.
For more about how to use HTML and CSS, check out this link: http://htmldog.com.
Tumblr Linear Theme CSS Experiments, Vol 3
[floating the search form right]
<div class=”column right”>
<small>Theme: <a href=”http://www.tumblr.com/theme/5136”>Linear</a> by <a href=”http://petervidani.com”>Peter Vidani</a><form onsubmit=”return tagSearch(this)” style=”float:right”>
<input type=”text” name=”tag” onfocus=”if (this.value == ‘{text:Search Label}’) {this.value=”}” onblur=”if (this.value == ”) {this.value=’{text:Search Label}’}” />
<input type=”submit” value=”Search” />
</form></small>
</div>
The theme I’m playing with, which I highly recommend (clean and easily customizable): http://www.tumblr.com/theme/5136.
I edit my theme’s layout by identifying CSS selectors using the Firefox Firebug app: http://getfirebug.com/.
For more about how to use HTML and CSS, check out this link: http://htmldog.com.
Tumblr Linear Theme CSS Experiments, Vol 2
[adding a link to my website in the top navigation]
<a class=”homepage” href=”http://guiseppegetto.com”>My website</a>
.homepage {margin-left: 8px}
The theme I’m playing with, which I highly recommend (clean and easily customizable): http://www.tumblr.com/theme/5136.
I edit my theme’s layout by identifying CSS selectors using the Firefox Firebug app: http://getfirebug.com/.
For more about how to use HTML and CSS, check out this link: http://htmldog.com.
Tumblr Linear Theme CSS Experiments, Vol 1
[auto-margining smaller pictures whenever I left-align them]
.column.right img {margin-right: 10px; margin-bottom: 0px;}
The theme I’m playing with, which I highly recommend (clean and easily customizable): http://www.tumblr.com/theme/5136.
I edit my theme’s layout by identifying CSS selectors using the Firefox Firebug app: http://getfirebug.com/.
For more about how to use HTML and CSS, check out this link: http://htmldog.com.
WEB DESIGN AND APPLICATIONS
Web Design and Applications involve the standards for building and Rendering Web pages, including HTML, CSS, SVG, device APIs, and other technologies for Web Applications (“WebApps”). This section also includes information on how to make pages accessible to people with disabilities (WCAG), to internationalize them, and make them work on mobile devices.
How much HTML and CSS should a [web] developer know?
I would actually identify three segments:
- Server side developers
- Client side developers (JavaScript programmers)
- Designers
You will need a thorough knowledge of both HTML and CSS. The division of labor between server side and client side/design developers typically requires that the server side developer supply the HTML produced by database and programming interactions. That HTML carries CSS identifiers as well, so that it can be manipulated by the client side developers or designers.
Your job as the server side developer is usually to supply the HTML/CSS markup to the other two. Aim for a full mastery of both HTML and CSS.
Bootstrap, from Twitter
Simple and flexible HTML, CSS, and Javascript for popular user interface components and interactions.
To Infinity and Beyond!: CSS, the Chameleon of HTML
CSS stands for “Cascading Style Sheets” and helps to affect XHTML in many different ways. CSS is written in a different document, not directly in the HTML document, so you don’t see exactly what is written in the document that is affecting it, and it is linked there inside the HTML code. CSS can…
Rollin' with the Times: What is CSS?
CSS (Cascading Style Sheets) is a style sheet language that works with the HTML code to tell the website how it should look and be formatted. It helps with separating content and adding elements to the website such as backgrounds, layouts, and fonts.
To give you a better idea of how websites use…


