Sunday, August 31, 2014

BookMarkTutoring.com Adds HTML5 Tutorial to YouTube

BookMarkTutoring.com(Santa Rosa, CA) -- Aug 30, 2015, has announced that it has added another how to video onto YouTube. The new tutorial answers the age old questions of how to center an image with CSS and without tables.

The answer to this question is well documented on the web. However there are a few problems that can arise even if you know the code to apply.

The basic solution is to create a center image style tag, like the one given below

.centerPage{
margin: auto;
position: absolute;
top: 500px;
bottom: 0px;
left: 0px;
right: 0px;


and applying to an image,  as given below

<p><img src="perspective composition.jpg" alt="Algebra for Fashion Designers" width="539" height="562" align="absmiddle" class="centerPage"/></p>

Note that the class style tag, centerPage, was applied to the image. 

If you want to see the code on an actual working page, visit Algebra for Fashion Designers at BookmarkTutoring.com


YouTube Link: https://www.youtube.com/watch?v=JyEdc5bYkdY&feature=youtu.be&hd=1

No comments:

Post a Comment