How to Make an Inline Element With CSS
Can you help me on how to make an inline element with css.
Thanks in advance.
You are doing css styles in html right? if you are and you want to align something then the attribute will be as follows in the example. this is an example of an html css definitions. it includes text alignment.
<html>
<head>
<title>
my title
</title>
<style type="text/css">
body {
font-family:times new roman,serif;
color:red;
text-align:center;
}
</style>
</head>
<body>
this is the body. where the content of a eb page appears.
</body>
</html>
that is how you align text and other stuff with css.
Post new comment
2 Steps to Post a New Problem

