How to create a simple article design with CSS and HTML5
I'm trying to create the following design:
This is my code so far.
<section class="frontpagearticle">
<figure class="frontpagearticlefigure">
<img class="frontpagearticleimg" />
</figure>
<header>
<h2 class="frontpagearticleh2">MyHeader</h2><time class="frontpagearticletime">pubtime</time>
</header>
<p class="frontpagearticletext">Lorem....</p>
<a href="">Read more...</a>
</section>
I'm having problems creating my css, so ex. pubtime would b开发者_运维知识库e align to the right, while MyHeader would be left align.
The image is always going to be the same size.
height: 140px;
width: 250px;
Something like this? My attempt at making it, as simple as I could :)
精彩评论