Оберните текст вокруг < i > элемент

Я хотел бы предложить другой способ поддерживать сеанс python через tmux на linux. вы запускаете tmux, присоединяете себя к сеансу, который вы открыли (если он не прикреплен после его открытия напрямую). выполнить python и делать все, что вы делаете на нем. затем отсоединяться от сеанса. отключение сеанса tmux не закрывает сеанс. сессия остается открытой.

профи этого метода: вы можете присоединить к этому сеансу с любого другого устройства (в случае, если вы можете ssh ваш компьютер)

минус этого метода: этот метод не отказывается от ресурсов используемый открытым сеансом python, пока вы на самом деле не будете использовать интерпретатор python.

1
задан Udhay Titus 6 February 2019 в 05:02
поделиться

2 ответа

Вот моя работа: https://codepen.io/anon/pen/ZVNpQE

Я смог это исправить, добавив (см. Ниже) к вашему значку:

float: left
0
ответ дан Tom Dickson 6 February 2019 в 05:02
поделиться

используйте этот <i class="far fa-file fa-9x text-info" style="float: left; margin-right:7px;"></i> вместо вашего <i class="far fa-file fa-9x text-info pull-left"></i>

    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css">
    
<div class="card border-secondary my-3">
        <div class="card-header">
            <h3>Title</h3>
        </div>
        <div class="card-body text-secondary">
            <div class="card-text">
                <div class="row align-text-top">
                    <div class="col px-5 ">

                        <i class="far fa-file fa-9x text-info" style="float: left; margin-right:7px;"></i>
                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
                      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
                      Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

                    <div class="col">
                        <asp:fileupload id="fuDocument" runat="server" cssclass="btn btn-secondary" allowmultiple="False" height="200">
                        <p class="mt-2">
                            <asp:button id="btnUploadFile" runat="server" text="Υποβολή" cssclass="btn btn-primary" onclick="btnUploadFile_Click">
                        </asp:button></p>

                    </asp:fileupload></div>

                </div>
            </div>
        </div>
    </div>
</div>


            <div id="push"></div>
        

0
ответ дан Udhay Titus 6 February 2019 в 05:02
поделиться
Другие вопросы по тегам:

Похожие вопросы: