Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Как отключить авто-обертку html body, и перенос тега style в head? #201

Open
inilim opened this issue Jul 5, 2023 · 0 comments

Comments

@inilim
Copy link

inilim commented Jul 5, 2023

$doc = new Document('
<style>.btn{
    font-size: 18px;
}</style>
<div contenteditable class="btn-wrp">
         <div class="btn"></div>
</div>
');

echo $doc->html();

Вывод:

<html>
    <head>
        <style>
            .btn{
                font-size: 18px;
            }
        </style>
    </head>
    <body>
        <div contenteditable class="btn-wrp">
            <div class="btn"></div>
        </div>
    </body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant