Jump to content
  • 0

Не срабатывает стиль в хтмл с пхп


people2010
 Share

Question

У меня в файле стилей style.css есть класс:

.otstyp{padding-right:100px;}

У меня есть также есть один из файлов с расширением пхп.

<?php

include("blocks/bd.php");
$result = mysql_query("select title,meta_d,meta_k,text from settings where page='lessons'",$db);
$myrow = mysql_fetch_assoc($result);
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title><?php echo $myrow['title'] ?></title>
<meta name="description" content="<?php echo $myrow['meta_d'] ?>">
<meta name="keywords" content="<?php echo $myrow['meta_k'] ?>">
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="690" border="0" align="center" bgcolor="#FFFFFF" class="main_border">

<!--Подключаем шапку сайта-->
<?php include("blocks/header.php"); ?>

<tr>
<td><table width="976" border="0">
<tr>
<!-- 2 строка первый столбец-->
<td width="182" valign="top" class="left"> 


<!--Подключаем левый блок сайта-->
<?php include ("blocks/lefttd.php");?>

<!-- 2 строка 2-ой столбец-->
<td valign="top">


<?php echo $myrow['text'] ?>
<table width="651" align="center" class="lesson">
<tr>
<td class="lesson_title" width="643">  Привет</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
</table>


<table>
<!--Подключаем нижний графический элемент-->
<?php include("blocks/footer.php"); ?>
</table>
</body>
</html>

Данные у меня хранятся в майскл.

Проблема в вот этом месте:

 <?php echo $myrow['text'] ?>

После вставки этой строки из базы данных,строка вставляется

впритык влево страницы,пробую добавлять дивы а в них класс class="otstyp" подключать ничего не действует,что можно сделать,чтоб на расстояние отступа,то что вставилось из базы данных отсупилось вправо на это расстояние?Я даже в базе данных экспериментировал добавлять так

<div class="otstyp">Урок №1</div> не срабатывает,вставляется сразу впритык влево по умолчанию

Проблема не в стиле,стиль я нормально указал, я вот проверил в качестве эксперимента в этой строке добавить класс отступ:

<?php echo $myrow['text']; ?> 
<table width="651" align="center" class="lesson,otstyp">
<tr>
................................................
..............................

И отступ таблички произошёл. А если написать так:

<div class="otstyp"><?php echo $myrow['text']; ?> </div>
<table width="651" align="center" class="lesson">
<tr>
................................................
..............................

Отступ не происходит,что делать?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy