• ベストアンサー

    widgetマスター

    モデレータ
    2023年8月14日 17:28

    CSSの「.speech-bubble」のclassに「transform: rotate(-5deg);」を追加してください!


    .speech-bubble {
        max-width: 40%;
        background: #efefef;
        border: 1px solid #a7a7a7;
        border-radius: 4px;
        box-shadow: 4px 4px 0 0#ccc;
        padding: 15px;
        line-height: 1.3;
        margin: 10px auto 40px;
        position: relative;
        box-sizing: border-box;
        transform: rotate(-5deg); /* 追加 */
    }