Advertisement
codergoob

userbox code

Oct 5th, 2023
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. Simplified userbox code by goob no credit needed
  2.  
  3. <style type="text/css">
  4. /* technically you don’t have to specify the style type but yk */
  5. .userbox {
  6. width: 239px;
  7. font-family: sans-serif;
  8. border: 1px solid;
  9. border-collapse: collapse;
  10. border-color: rgb(153, 153, 153);
  11. }
  12. .id {
  13. height: 45px;
  14. width: 45px;
  15. text-align: center;
  16. font-size:12pt;
  17. border: 1px solid;
  18. font-weight: bold;
  19. border: 1px solid rgb(153, 153, 153);
  20. color: rgb(0, 0, 0);
  21. background: rgb(221, 221, 221);
  22. line-height: 1.2em;
  23. }
  24. .info {
  25. padding: 0 4pt;
  26. border: 1px solid;
  27. font-size: 8pt;
  28. border: 1px solid rgb(153, 153, 153);
  29. color: rgb(0, 0, 0);
  30. background: rgb(238, 238, 238);
  31. line-height: 1.2em;
  32. }
  33. </style>
  34. <table class="userbox">
  35. <body>
  36. <tr>
  37. <td class="id">ID</td>
  38. <td class="info">Info</td>
  39. </tr>
  40. </tbody>
  41. </table>
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement