如何删除包含图像的php文档中的点

时间:2015-11-11 04:39:35

标签: php html

我很想删除你在图片中看到的点请帮助 以下是我的代码

 <body>
    <h1>Please Check Your Email For Verfication that you are not a Bot :-) </h1>
    <a href='hotmail.com' class="icon" ><img src="outlook.png" width="70px" height="70px"/></a><br>;
    <a href='gmail.com' class="icon"><img src="Gmail.png" width="70px" height="70px"/></a><br>;
    <a href='yahoo.com' class="icon"><img src="yahoo.png" width="70px" height="70px"/></a><br>;
    </body>`

enter image description here

3 个答案:

答案 0 :(得分:1)

也许删除分号会有所帮助:

My register xml file

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schppemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:padding="10dp"
android:layout_height="match_parent"
tools:context="com.swach.wecareapp.fragments.RegisterFragment">
<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <!-- TODO: Update blank fragment layout -->
        <TextView
            android:layout_width="wrap_content"
            android:padding="10dp"
            android:layout_height="wrap_content"
            android:text="@string/Hospital_Name"
            />
        <EditText
            android:id="@+id/etHospital"
            android:layout_width="match_parent"
            android:layout_marginBottom="10dp"
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width="wrap_content"
            android:padding="10dp"
            android:layout_height="wrap_content"
            android:text="City"
            />
        <EditText
            android:id="@+id/etCity"
            android:layout_width="match_parent"
            android:layout_marginBottom="10dp"
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width="wrap_content"
            android:padding="10dp"
            android:layout_height="wrap_content"
            android:text="Level"
            />
        <EditText
            android:id="@+id/etLevel"
            android:layout_width="match_parent"
            android:layout_marginBottom="10dp"
            android:layout_height="wrap_content" />

        <TextView
            android:layout_width="wrap_content"
            android:padding="10dp"
            android:layout_height="wrap_content"
            android:text="Complaint_Address"
            />
        <EditText
            android:id="@+id/etAddress"
            android:layout_width="match_parent"
            android:layout_marginBottom="10dp"
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width="wrap_content"
            android:padding="10dp"
            android:layout_height="wrap_content"
            android:text="Phone"
            />
        <EditText
            android:id="@+id/etPhone"
            android:layout_width="match_parent"
            android:layout_marginBottom="10dp"
            android:layout_height="wrap_content" />
        <TextView
            android:layout_width="wrap_content"
            android:padding="10dp"
            android:layout_height="wrap_content"
            android:text="Street"
            />
        <EditText
            android:id="@+id/etStreet"
            android:layout_width="match_parent"
            android:layout_marginBottom="10dp"
            android:layout_height="wrap_content" />

        <Button
            android:id="@+id/bRegister"
            android:text="Register"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>
</ScrollView>

答案 1 :(得分:1)

不需要在行尾添加分号,请参阅下文:

<body>
  <h1>Please Check Your Email For Verfication that you are not a Bot :-)</h1>
  <a href='hotmail.com' class="icon" ><img src="outlook.png" width="70px" height="70px"/></a><br>
  <a href='gmail.com' class="icon"><img src="Gmail.png" width="70px" height="70px"/></a><br>
  <a href='yahoo.com' class="icon"><img src="yahoo.png" width="70px" height="70px"/></a><br>
</body>

如果您想查看HTML语法,此网站是一个很好的资源:HTML5 Syntax

答案 2 :(得分:0)

因此,您有一些问题导致出现额外的符号,并且链接不会像您期望的那样工作。

分号出现是因为你在每个<br/>之后都有分号,不需要在那里。

每张图片后出现下划线,因为图像嵌套在锚标签中。默认情况下,锚标签具有下划线文本修饰,并且在大多数情况下图像具有一些额外的大小。

在几乎所有网络服务器上的锚标签中,如果您没有定义要使用的协议(如http://),那么它会将用户发送到http://yoursite.com/<current_page>/<clicked_link>而不是外部网站你期待。

使用这些应该解决所有问题:

HTML

 <body>
    <h1>Please Check Your Email For Verfication that you are not a Bot :-) </h1>
    <a href="http://hotmail.com" class="icon" ><img src="outlook.png" width="70px" height="70px"/></a><br>
    <a href="http://gmail.com" class="icon"><img src="Gmail.png" width="70px" height="70px"/></a><br>
    <a href="http://yahoo.com" class="icon"><img src="yahoo.png" width="70px" height="70px"/></a><br>
 </body>

CSS

.icon {
    text-decoration: none;
}