myhtml.php 426 B

123456789101112131415161718192021222324
  1. <?php
  2. /* @var $this yii\web\View */
  3. ?>
  4. <style>
  5. .container img{
  6. width: 100%;
  7. height: auto;
  8. }
  9. .title{
  10. margin-top: 1rem;
  11. font-size: 1.3rem;
  12. line-height: 1.5rem;
  13. color: #000;
  14. font-weight: bold;
  15. text-align: center;
  16. }
  17. </style>
  18. <div class="title">
  19. <?=$content->title?$content->title:''; ?>
  20. </div>
  21. <?=$content->content?$content->content:'';?>