我想知道如何使用css定位php源码字符串,登录后我创建了一个登录表单,用户被定向到我希望在特定位置查看用户名的仪表板,
这是我的代码:
CSS
// font to decorate the username string
@font-face {
font-family: 'chunkfiveroman';
src: url('chunkroman/chunkfive-webfont.eot');
src: url('chunkroman/chunkfive-webfont.eot?#iefix') format('embedded-opentype'),
url('chunkroman/chunkfive-webfont.woff') format('woff'),
url('chunkroman/chunkfive-webfont.ttf') format('truetype'),
url('chunkroman/chunkfive-webfont.svg#chunkfiveroman') format('svg');
font-weight: normal;
font-style: normal;
}
#postioner
{
position:absolute;
left:100px;
top:100px;
}
PHP
<?php
session_start();
$_SESSION['var'] = $username;
?>
我也想知道如何使用css字体对$username
进行调整。 :)
答案 0 :(得分:1)
您需要使用适当的<link>
输出HTML到您的CSS。
示例 :
<?php
$username = 'Bob';
echo <<<EOT
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>My Title</title>
<link rel="stylesheet" href="mystyles.css">
</head>
<body>
$username
</body>
EOT;
?>