Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Last active October 19, 2023 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/7e0139cdd0375faa61d79f6bf6ebaa2b to your computer and use it in GitHub Desktop.
Save codeforfun-jp/7e0139cdd0375faa61d79f6bf6ebaa2b to your computer and use it in GitHub Desktop.
PHP Calendar 4
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>PHPカレンダー</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<style>
a {
text-decoration: none;
}
th {
height: 30px;
text-align: center;
}
td {
height: 100px;
}
.today {
background: orange !important;
}
th:nth-of-type(1), td:nth-of-type(1) {
color: red;
}
th:nth-of-type(7), td:nth-of-type(7) {
color: blue;
}
</style>
</head>
<body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment