Guest User

Untitled

a guest
Feb 27th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <div class="main-container">
  2. <div class="message-row">
  3. <div class="chatbox">
  4. <div class="message-mainbox"></div>
  5. </div>
  6. </div>
  7. </div>
  8.  
  9. /End HTML start css/
  10. .main-container{
  11. display: top;
  12. flex-direction: column;
  13. justify-content: flex-start;
  14. align-items: flex-start;
  15. align-content: flex-start;
  16. height:98%;
  17. margin-bottom:10px;
  18. box-sizing: border-box;
  19. border: 5px solid red;
  20. flex: 0 0 auto;
  21. }
  22. .message-row{
  23. margin: 15px;
  24. border: 5px solid red;
  25. padding: 5px;
  26. }
  27. .chatbox{
  28. width:90%;
  29. margin-bottom:5px;
  30. background: pink;
  31. padding:5px;
  32. vertical-align: baseline;
  33. border-radius: 50px 50px 50px 0px;
  34. }
  35. .message-mainbox{
  36. background-color: #39beff;
  37. border-radius: 50%;
  38. width:90%;
  39. margin: auto;
  40. left: 0;
  41. right: 0;
  42. top: 0;
  43. bottom: 0;
  44. }
  45. /.message-mainbox{ doesnt work, little in top
  46. width:90%;
  47. margin-bottom:5px;
  48. background: blue;
  49. border-radius: 50px 50px 50px 0px;
  50. padding:15px;
  51. vertical-align: baseline;
  52. margin: auto;
  53. left: 0;
  54. right: 0;
  55. top: 0;
  56. bottom: 0;
Advertisement
Add Comment
Please, Sign In to add comment